用c++,编写程序求输入任意两个整数数的和

日期:2020-08-14 17:17:33 人气:1

用c++,编写程序求输入任意两个整数数的和

#include int main() { int a,b,c; scanf("%d,%d",&a,&b); c=a+b; printf("%d",c); return 0; }
    A+
热门评论