1001: 整數求和

描述:求兩個整數之和 輸入:輸入數據只包括兩個整數A和B。 輸出:兩個整數的和。 樣例輸入:1 2 樣例輸出:3 考點:運算符 代碼:markdown #include <stdio.h> int main() { int a,b; int c; scanf("%d",&a); scanf("%d",&b); c=a+b; printf("%d",c
相關文章
相關標籤/搜索