赞
踩
//编写程序,从键盘输入两个数,求两数之和。 #include<stdio.h> int main() { int a,b,t; scanf("%d,%d",&a,&b); t=a+b; printf("t is %d\n",t); return 0; }