C语言:计算两个数字的加法

#include<stdio.h>

int main()
{
	int a,b;
	scanf("%d %d",&a,&b);
	printf("%d",a+b);
	return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_40757240/article/details/86552808