博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1135: 零起点学算法42——多组测试数据(求和)IV
阅读量:6268 次
发布时间:2019-06-22

本文共 1140 字,大约阅读时间需要 3 分钟。

1135: 零起点学算法42——多组测试数据(求和)IV

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 2439  Accepted: 1277
[][][]

Description

还有一些输入是以上几种情况的组合,具体根据题目对前面几种情况进行组合

比如题目要求是多组测试数据
每组测试数据首先输入一个整数n(如果n=0就表示结束) 然后再输入n个整数
这类题目输入格式如下:

int main() {     int n,i;     while(scanf("%d",&n)!=EOF && n!=0)     {          for(i=1;i<=n;i++)          {               ....//每次输入一个数,共循环n次,需要的时候做其他处理          }     } }

 

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 45 1 2 3 4 50

 

Sample Output

1015

 

Source

 
1 #include
2 int main(){ 3 int n; 4 while(scanf("%d",&n)!=EOF&&n!=0){ 5 int a,s=0; 6 for(int i=1;i<=n;i++){ 7 scanf("%d",&a); 8 s+=a; 9 }10 printf("%d\n",s);11 }12 return 0;13 }

 

转载于:https://www.cnblogs.com/dddddd/p/6680444.html

你可能感兴趣的文章
做技术做软件-----如何才能拿到上万的月薪
查看>>
linux 查看当前路径命令:pwd
查看>>
At.js – 用于 Web 应用程序的自动完成库
查看>>
[Android Pro] Android权限设置android.permission完整列表
查看>>
如何对抗硬件断点--- 调试寄存器
查看>>
mybatis学习
查看>>
从不同层面看cocos2d-x
查看>>
Struts2技术详解
查看>>
MFC应用程序向导生成的文件
查看>>
Oracle体系结构之oracle密码文件管理
查看>>
【leetcode】Remove Element (easy)
查看>>
mysql多表查询及其 group by 组内排序
查看>>
alsa的snd_pcm_readi()函数和snd_pcm_writei()
查看>>
Android学习网站推荐(转)
查看>>
嵌入式根文件系统的移植和制作详解
查看>>
MEF部件的生命周期(PartCreationPolicy)
查看>>
LCD的接口类型详解
查看>>
nginx 基础文档
查看>>
LintCode: Unique Characters
查看>>
Jackson序列化和反序列化Json数据完整示例
查看>>