1001: 整数求和

描述:求两个整数之和 输入:输入数据只包括两个整数A和B。 输出:两个整数的和。 样例输入:1 2 样例输出:3 考点:运算符 代码:markdown #include <stdio.h> int main() { int a,b; int c; scanf("%d",&a); scanf("%d",&b); c=a+b; printf("%d",c
相关文章
相关标签/搜索