c语言输入任意三个数,求和并输出,

2025-04-13 23:28:48
推荐回答(2个)
回答1:

回答2:

#include 
int main()
{
    int a=0,b=0,c=0;
    scanf("%d %d %d",&a,&b,&c);
    printf("a+b+c=%d\n",a+b+c);
    return 0;
}
3 4 5
a+b+c=12
Press any key to continue