赞
踩
时间限制: 1 Sec 内存限制: 30 MB
提交: 139672 解决: 56638
[状态] [讨论版] [提交] [命题人:外部导入]
计算两个整数的和。
输入两个整数,两个整数用空格隔开。
输出为两个整数的和,单独占一行。
1 1
2
本题在在线开放课程上有讲解,第一章的边讲边写:a+b问题
https://www.icourse163.org/learn/ZZULI-1206704833?tid=1465320443#/learn/content?type=detail&id=1245106408
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- int a, b;
- scanf ("%d%d", &a, &b);
- printf("%d\n", a+b);
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。