level 3
#include <stdio.h>
main()
{
int a,b,c;
printf("Please input the number a:");
scanf("%d" , &a);
printf("Please input the number b:");
scanf("%d" , &b);
c=a+b;
printf("这两个数的和是:\n%d+%d=%d",a,b,c);
getchar();
return 0;
}
代码在这
2018年08月01日 03点08分


