全篇都是讲数字之间的运算的:

由上自下难度逐渐升级 ,没耐心者建议一拉到底:

1000:

Problem Description
Calculate A + B.
 
Input
Each line will contain two integers A and B. Process to end of file.
 
Output
For each case, output A + B in one line.
 
Sample Input
1 1
 
Sample Output
2

搜到的答案1000.1:

#include <stdio.h>
int main()
{
int a,b;
while(scanf("%d %d",&a,&b)!=EOF)
{
printf("%d\n",a+b);
}
return ;
}

我的代码1000.2:

#include<stdio.h>
#include <stdlib.h>
int main()
{
int a=,b=;
int sum = ;
scanf_s("%d %d", &a,&b);
sum = a + b;
printf("%d", sum);
return ;
}

小结:可以把自己的代码简化 ,如1000.2中的sum求和可以省略直接用printf进行输出。

1089:

Your task is to Calculate a + b.

Input

The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.

Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
 
Sample Input
1 5
10 20
 
Sample Output
6
30
 

搜的代码1089.1:

#include<stdio.h>
int main()
{
int a, b;
while (scanf_s("%d %d", &a, &b) != EOF) // 输入结束时,scanf函数返回值为EOF,即没有数据输入时则退出while循环
printf("%d\n", a + b);
return ; //返回值为0
}

我的代码1089.2:

#include<stdio.h>
#include <stdlib.h>
int main()
{
int a=,b=,c=,d=;
int sum = ,sumo=;
scanf_s("%d %d", &a,&b);
getchar();
scanf_s("%d %d", &c, &d);
sum = a + b;
sumo = c + d;
printf("%d\n%d", sum,sumo);
return ;
}

小结:这里很蠢:我以为题目的意思是连续输入两行,然后连续输出结果,有了代码1089.2.

   但是实际上output:For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.的意思是,每输入一行后面就要接一行output,审题不明确。

1090:

Your task is to Calculate a + b.

Input
Input contains an integer N in the first line, and then N lines follow. Each line consists of a pair of integers a and b, separated by a space, one pair of integers per line.
 
Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
 
Sample Input
2
1 5
10 20
 
Sample Output
6 30
 

搜的代码:

 #include<stdio.h>

 int main(void)
{
int a=,b=,N=,i=;
scanf("%d\n",&N);
while(i<N)
{
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
i++;
}
return ;
}

我的代码:

 #include<stdio.h>
int main()
{
int n,a, b;
scanf_s("%d",&n);
while (scanf_s("%d %d", &a, &b) != EOF) // 输入结束时,scanf函数返回值为EOF,即没有数据输入时则退出while循环
printf("%d\n", a + b);
return ; //返回值为0
}

小结:变式多了一个在最开始加一个式子总数的输入,1090.2没有使用到这个总数,而1090.1使用到了这个总数,用while(N--)控制。。

1091:

Problem Description
Your task is to Calculate a + b.
 
Input
Input contains multiple test cases. Each test case contains a pair of integers a and b, one pair of integers per line. A test case containing 0 0 terminates the input and this test case is not to be processed.
 
Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
 
Sample Input
1 5
10 20
0 0
 
Sample Output
6
30
 

搜到的代码1091.1:

 #include<stdio.h>
int main()
{
int a, b;
while (scanf_s("%d%d", &a, &b) == )
{
if (a == && b == ) break;
else printf("%d\n", a + b);
}
return ;
}

我的代码1091.2:

 #include<stdio.h>
int main()
{
int a, b;
int i = ;
while (i != -)
{
scanf_s("%d%d", &a, &b);
if (a == && b == )
return ;
else
printf("%d\n", a + b);
i++; }
}

小结:这个变式我从代码1091.1发现可以通过scanf(***)==n来控制每一组元素的个数,如果scanf设置为n,那么vs会按照输入端输入的值依次选取n个值进行操作(比如:设置n=2,即使键盘输入第一行三个数a1,a2,a3,回车运行,得到的答案依旧是对a1,a2进行操作的结果,接着在输入一行a4,a5,那么结果输出的是对a3,a4操作的结果),有助于进行严格的操作。当然如果不进行设置n值,scanf(****),那么vs会操作每一行相应的元素,不会涉及到上一行。

1092:

Problem Description
Your task is to Calculate the sum of some integers.
 
Input
Input contains multiple test cases. Each test case contains a integer N, and then N integers follow in the same line. A test case starting with 0 terminates the input and this test case is not to be processed.
 
Output
For each group of input integers you should output their sum in one line, and with one line of output for each line in input.
 
Sample Input
4 1 2 3 4
5 1 2 3 4 5
0
 
Sample Output
10
15

搜的代码1092.1:

 #include<stdio.h>
int main()
{
    int n,m,i,sum;
    while(scanf("%d",&n)!=EOF)
    {
        if(n==)
          break;
        sum=;
        for(i=;i<n;i++)
        {
            scanf("%d",&m);
            sum+=m;
        }
        printf("%d\n",sum);
    }
    return ;
 }

以输入0判断结尾

我的代码1092.2:

以输入0判断结尾

小结:我发现循环这一部分用while表达式:“while(n--)”做判断句挺好的,如果n自减到0退出循环,不然就继续循环,相当于:“for(i=n;i>0;i--)”

1093:

Problem Description
Your task is to calculate the sum of some integers.
 
Input
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.
 
Output
For each group of input integers you should output their sum in one line, and with one line of output for each line in input.
 
Sample Input
2
4 1 2 3 4
5 1 2 3 4 5
 
Sample Output
10
15
 

搜的代码1093.1:

 #include <stdio.h>
#include <stdlib.h>
#define max 100
int main()
{
int x, i, j, n;
scanf_s("%d", &x);
for (j = ; j < x; j++)
{
scanf_s("%d", &n);
int s = , a[max];
for (i = ; i <= n; i++)
scanf_s("%d", &a[i]); for (i = ; i <= n; i++)
s = s + a[i];
printf("%d\n", s);
if (j != x - )printf("\n");
}
return ;
}

我的代码1093.2:

 #include<stdio.h>
int main()
{
int n,m;
int a, sum=;
scanf_s("%d", &m);
while (m--)
{
scanf_s("%d", &n);
{
while (n--)
{
scanf_s("%d", &a);
sum += a;
}
printf("%d", sum);
}
}
return ;
}

小结:1093.1使用的数组做的,嗯可能是vs版本的问题吧(我用的2017) ,搜到的的代码都会有报错,然后加了个#define max 100,然后能正常运行。

1094:

Problem Description
Your task is to calculate the sum of some integers.
 
Input
Input contains multiple test cases, and one case one line. Each case starts with an integer N, and then N integers follow in the same line.
 
Output
For each test case you should output the sum of N integers in one line, and with one line of output for each line in input.
 
Sample Input
4 1 2 3 4
5 1 2 3 4 5
 
Sample Output
10
15

搜的代码:

多行输入,要求按行输出

我的代码:

第一个元素是数字个数

小结:忘记了多行输入的判断方法了:scanf_s("***")!=EOF,然后就扔下了一天。。。说一下EOF:

  "EOF 是end of file的缩写 。

  在用函数读入文件数据的时候,函数总会返回一个状态,是读取成功还是失败,那么这个状态怎么表示呢,所以就约定俗成定义一个标识符表示这个状态,就有了EOF。

  scanf函数只有在第一个参数为NULL(空指针)的情况下,才可能返回EOF,否则,返回成功格式化并赋值的参数个数(>=0)。

  所以,这个循环,将是一个死循环。"

  我太喜欢这个循环了

1095:

Problem Description
Your task is to Calculate a + b.
 
Input
The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
 
Output
For each pair of input integers a and b you should output the sum of a and b, and followed by a blank line.
 
Sample Input
1 5
10 20
 
Sample Output
6
 
30
 
 
搜的代码:
没搜到(额。。。可能代码太简单了,没有人写)
 

我的代码:

 #include<stdio.h>
int main()
{
int i,a,b,sum=;
while (scanf_s("%d %d", &a,&b) != EOF)
{
printf("%d\n\n",a+b);
}
return ;
}

多行输入,要求按行输出,并带有空行

1096:

Your task is to calculate the sum of some integers.

 
Input
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.
 
Output
For each group of input integers you should output their sum in one line, and you must note that there is a blank line between outputs.
 
Sample Input
3
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3
 
Sample Output
10
 
15
 
6
 
也没搜到代码,估计这题被觉得没什么创新,所以被抛弃了

我的代码:

#include<stdio.h>
int main()
{
int i,n,m;
scanf_s("%d", &n);
while(n--)
{
scanf_s("%d", &i);
int sum = ;
while (i--)
{
scanf_s("%d",&m);
sum += m;
}
printf("%d\n\n", sum);
}
return ;
}

全篇总结:

不足    :计划上应该是两天练完的,但是我搞了四天,属实是懒

学到了:1.我能灵活的使用循环语句,尤其是while(n--),真好用,推荐;

    2.让文段循环下去的EOF的使用

    3.不至于太生疏的使用数组,写入数据和读出数据

最后,武汉加油!白衣天使们加油!

HDU——算法练习1000 1089-1096的更多相关文章

  1. C++ 的简单输出输入 HDU 1089~1096

    A+B for Input-Output Practice (I) Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K ...

  2. 转载:hdu 题目分类 (侵删)

    转载:from http://blog.csdn.net/qq_28236309/article/details/47818349 基础题:1000.1001.1004.1005.1008.1012. ...

  3. HDU分类

    原地址:http://www.byywee.com/page/M0/S607/607452.html 总结了一下ACM STEPS的各章内容,趁便附上我的Steps题号(每人的不一样). 别的,此文首 ...

  4. [转] HDU 题目分类

    转载来自:http://www.cppblog.com/acronix/archive/2010/09/24/127536.aspx 分类一: 基础题:1000.1001.1004.1005.1008 ...

  5. hdu 分类

    HDU分类 http://www.cnblogs.com/ACMan/archive/2012/05/26/2519550.html#2667329 努力A完.方便自己系统A题 不断更新中...... ...

  6. 降维算法-PCA主成分分析

    1.PCA算法介绍主成分分析(Principal Components Analysis),简称PCA,是一种数据降维技术,用于数据预处理.一般我们获取的原始数据维度都很高,比如1000个特征,在这1 ...

  7. 杭电acm阶段之理工大版

    想參加全国软件设计大赛C/C++语言组的同学,假设前一篇<C和指针课后练习题总结>没看完的,请先看完而且依照上面的训练做完,然后做以下的训练. 传送门:http://blog.csdn.n ...

  8. 杭州电acm理工大舞台版

    我要参加全国软件设计大赛C/C++学生语言组,前一个假设<C训练和演习,并总结手>没看完,请阅读上述并根据所作的训练,然后做下面的练习. 门户:http://blog.csdn.net/l ...

  9. HD ACM 水题顺序

    原文传送门:http://acm.hdu.edu.cn/ 第一阶段:开始入门吧!(15天,53题) 一.输入输出练习(2天,10题) 1000.1089-1096.1001 二.简单操作:(2-4天, ...

随机推荐

  1. K 破忒头的匿名信(ac自动机+小dp)

    题:https://ac.nowcoder.com/acm/contest/4010/K 题意:用一些模式串凑成一个目标串,每个模式串有消耗,问组合的最小消耗,或不能组成输出-1: 分析:典型的AC自 ...

  2. [原]调试实战——使用windbg调试崩溃在ole32!CStdMarshal::DisconnectSrvIPIDs

    原调试debugwindbg崩溃crash 前言 最近程序会不定期崩溃,很是头疼!今晚终于忍无可忍,下决心要干掉它!从之前的几个相关的dump可以猜到是有接口未释放导致的问题,但没有确认到底是哪个接口 ...

  3. 用原生socket发送HTTP数据包

    分享一个写扫描器和POC时的小技巧. 有时候有的漏洞需要一些特殊的数据包,比如说畸形的HTTP头.畸形的Multipart.畸形的chunk包等,此时用编程语言自己的HTTP库可能构造不出这种数据包, ...

  4. Part-Appium-1

    1.安装node > 下载二进制文件,解压后,配置到环境变量 https://nodejs.org/download/release/latest/ > vim ~/.bashrc,exp ...

  5. 吴裕雄--天生自然python学习笔记:python设置文档的格式

    Win32com 组件可为特定范围的内 容设置格式, 较常用的格式有标题格式.对齐 方式格式及字体格式 . 许多格式使用 常量表示 , 所 以 需先导入 constants常量模块 : 设置标题格式的 ...

  6. python后端面试第五部分:Linux操作系统--长期维护

    ##################     Linux操作系统      ####################### 1,讲一下你常用的Linux/git命令和作用: 2,查看当前进程是用什么命 ...

  7. LeetCode Day 2

    LeetCode0004 给定两个大小为 m 和 n 的有序数组 nums1 和 nums2. 请你找出这两个有序数组的中位数,并且要求算法的时间复杂度为 O(log(m + n)). 你可以假设 n ...

  8. orcale 11g安装,创建表空间,用户,授权用户

    一.卸载旧oracle 用Oracle自带的卸载程序不能从根本上卸载Oracle,从而为下次的安装留下隐患,那么怎么才能完全卸载Oracle呢?那就是直接注册表清除,步骤如下: 1. 开始->设 ...

  9. python循环删除list中的元素

    直接上例子: a = [1,2,3,4,5,6] for i in a: a.remove(i) print(a) 返回:[2, 4, 6] 循环a,想删除a的所有元素,但实际确有数据保留了下来,这是 ...

  10. 使用fiddler盖楼评论

    使用fiddler盖楼评论:使用replay重复请求某接口