A Puzzle In ACM Sample I/O

探讨了在解决ACM问题时,对于特定输入输出格式的理解与实现,以实例问题1002为例,详细解释了如何正确处理整数输入并进行相应计算输出。

      As presented, ACM problems all have Sample I/O. But I am confused by them. 

      For instance, in the problem 1002, which can be found on this website http://acm.hdu.edu.cn/showproblem.php?pid=1002 , yet I come up with the solution, it seems that we are required to input all the integers at once, and output in the same way. 

     And I don't know whether my solution is correct.

      Here gives my code:

#include <stdio.h>
int main()
{
	int i,n;
	long long int a,b;
	scanf("%d",&n);
	for(i=0;i<=n;i++)
	{
		scanf("%lld%lld",&a,&b);
		printf("Case %d:\n",i+1);
		printf("%lld+%lld=%lld\n\n",a,b,a+b);
	}
	return 0;
}


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值