- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
杭电ACM试题答案
【杭电ACM1000】
A + B Problem
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
# include stdio.h
int main()
{
int a, b;
while(scanf(%d%d, a, b)!=EOF)
printf(%d\n, a+b);
return 0;
}
【杭电ACM1001】
Sum Problem
Problem Description
Hey, welcome to HDOJ(Hangzhou Dianzi University Online Judge).In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + ... + n.
Input
The input will consist of a series of integers n, one integer per line.
Output
For each case, output SUM(n) in one line, followed by a blank line. You may assume the result will be in the range of 32-bit signed integer.
Sample Input
1 100
Sample Output
1 5050
# include stdio.h
int main()
{
int n, i, sum = 0;
while(scanf(%d, n)!=EOF)
{
for(i=1; i=n; ++i)
sum = sum + i;
printf(%d\n\n, sum);
sum = 0;
}
return 0;
}
【杭电ACM1002】
A + B Problem II
Problem Description
I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.
Input
The first line of the input contains an integer T(1=T=20) which means the number of test cases. Then T lines follow, each line consists of two positive integers, A and B. Notice that the integers are very large, that means you should not process them by using 32-bit integer. You may assume the length of each integer will not exceed 1000.
Output
For each test case, you should output two lines. The first line is Case #:, # means the number of the test case. The second line is the an equation A + B = Sum, Sum means the result of A + B. Note there are some spaces int the equation. Output a blank line between two test cases.
Sample Input
2 1 2 112233445566778899 998877665544332211
Sample Output
Case 1: 1 + 2 = 3 Case 2: 112233445566778899 + 998877665544332211 = 1111111111111111110
#includestdio.h
#includestring.h
int shu(char a)
{
return (a-0);
}
int main(){
char a[1000],b
您可能关注的文档
- MMST3904T146;UMT3904T106;SST3904T116;中文规格书,Datasheet资料.pdf
- V-Raysun的参数.doc
- 关于 太阳与行星产生燃烧.docx
- SunWebScan控件授权.doc
- matlab中sum函数作用.doc
- 聚合函数count() count(字段) sum(字段) avg(字段) min(字段) max(字段).docx
- 如何写英文信件.ppt
- 美国财产法详解.pdf
- 121017 蒂森克虏伯-冲压用钢.pdf
- 太阳能电池发展历史独家收集整理.doc
- RPI-0125;中文规格书,Datasheet资料.pdf
- MCIMX233CAG4C;MCIMX233DJM4C;MCIMX233CJM4C;MCIMX233DAG4C;中文规格书,Datasheet资料.pdf
- 阅读程序写结果.doc
- RTR025N03TL;中文规格书,Datasheet资料.pdf
- RTQ020N03TR;中文规格书,Datasheet资料.pdf
- 修辞figures of speech笔记模板.doc
- 2SCR544PT100;中文规格书,Datasheet资料.pdf
- RPI-441C1E;RPI-441C1;中文规格书,Datasheet资料.pdf
- popnmusic sunny park教程.doc
- 无催化剂-聚乙二醇.pdf
文档评论(0)