程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 山東理工大學ACM平台題答案關於C語言 1015 A+B for Input-Output Practice

山東理工大學ACM平台題答案關於C語言 1015 A+B for Input-Output Practice

編輯:關於C語言

A+B for Input-Output Practice (VI)

Time Limit: 1000ms Memory limit: 65536K 有疑問?點這裡^_^

題目描述

Your task is to calculate the sum of some integers.

輸入

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.

輸出

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.

示例輸入

4 1 2 3 4
5 1 2 3 4 5

示例輸出

10
15

提示

來源

HDOJ

#include
void main()
{
int a,i,j,m;
while(scanf("%d",&i)!=EOF)
{
j=0;
for(m=0;m {
scanf("%d",&a);
j=j+a;
}
printf("%d\n",j);
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved