计蒜客 A+B+C问题 C语言实现

#include<stdio.h>
int main()
{
int A,B,C;
scanf("%d%d%d",&A,&B,&C);
printf("%d\n",A+B+C);
return 0;
}

相关文章: