杭电acm部分答案

杭电acm部分答案

ID:38630102

大小:169.00 KB

页数:33页

时间:2019-06-16

杭电acm部分答案_第1页
杭电acm部分答案_第2页
杭电acm部分答案_第3页
杭电acm部分答案_第4页
杭电acm部分答案_第5页
资源描述:

《杭电acm部分答案》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、ProblemDescriptionCalculate A+B. InputEachlinewillcontaintwointegers A and B.Processtoendoffile. OutputForeachcase,output A+B inoneline. SampleInput11 SampleOutput2#includevoidmain(){inta,b;while(scanf("%d%d",&a,&b)!=EOF){printf("%d",a+b);}}ProblemDescriptionHe

2、y,welcometoHDOJ(HangzhouDianziUniversityOnlineJudge).Inthisproblem,yourtaskistocalculateSUM(n)=1+2+3+...+n.InputTheinputwillconsistofaseriesofintegersn,oneintegerperline.OutputForeachcase,outputSUM(n)inoneline,followedbyablankline.Youmayassumetheresultwillbeintherangeof32

3、-bitsignedinteger.SampleInput1100SampleOutput15050#includevoidmain(){intn,sum,i;while(scanf("%d",&n)!=EOF){sum=0;for(i=0;i<=n;i++)sum+=i;printf("%d",sum);}}ProblemDescriptionIhaveaverysimpleproblemforyou.GiventwointegersAandB,yourjobistocalculatetheSumofA+B. 

4、InputThefirstlineoftheinputcontainsanintegerT(1<=T<=20)whichmeansthenumberoftestcases.ThenTlinesfollow,eachlineconsistsoftwopositiveintegers,AandB.Noticethattheintegersareverylarge,thatmeansyoushouldnotprocessthembyusing32-bitinteger.Youmayassumethelengthofeachintegerwill

5、notexceed1000. OutputForeachtestcase,youshouldoutputtwolines.Thefirstlineis"Case#:",#meansthenumberofthetestcase.Thesecondlineistheanequation"A+B=Sum",SummeanstheresultofA+B.Notetherearesomespacesinttheequation.Outputablanklinebetweentwotestcases. SampleInput2121122334455

6、66778899998877665544332211 SampleOutputCase1:1+2=3Case2:112233445566778899+998877665544332211=1111111111111111110#include#includeintmain(){charstr1[1001],str2[1001];intt,i,len_str1,len_str2,len_max,num=1,k;scanf("%d",&t);getchar();while(t--){inta[1001]=

7、{0},b[1001]={0},c[1001]={0};scanf("%s",str1);len_str1=strlen(str1);for(i=0;i<=len_str1-1;++i)a[i]=str1[len_str1-1-i]-'0';scanf("%s",str2);len_str2=strlen(str2);for(i=0;i<=len_str2-1;++i)b[i]=str2[len_str2-1-i]-'0';if(len_str1>len_str2)len_max=len_str1;elselen_max=len_str2

8、;k=0;for(i=0;i<=len_max-1;++i){c[i]=(a[i]+b[i]+k)%10;k=(a[i]+b[i]+k)/10;}if(k!=0)c[len_max]=1;pr

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。