天天看點

【入門1】順序結構 P1001 A+B Problem 加法

【入門1】順序結構 P1001 A+B Problem

【入門1】順序結構

【入門1】順序結構 P1001 A+B Problem 加法
【入門1】順序結構 P1001 A+B Problem 加法

AC代碼如下:

#include <bits/stdc++.h>
int main(){
	int a,b,c;
	scanf("%d%d",&a,&b);
	c=a+b;
	printf("%d\n",c); 
	return 0;
}
           

繼續閱讀