fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a;
  6. int b;
  7. int c;
  8. scanf("%d",&a);
  9. scanf("%d",&b);
  10. c=a+b;
  11. printf("\n你輸入的第一個數是 %d",a);
  12. printf("\n你輸入的第二個數是 %d",b);
  13. printf("\n兩數加起來是 %d",c);
  14. printf("\n漫畫!圖解程式設計,第35頁練習\n");
  15.  
  16. }
Success #stdin #stdout 0s 16064KB
stdin
68
32
stdout
你輸入的第一個數是 68
你輸入的第二個數是 32
兩數加起來是 100
漫畫!圖解程式設計,第35頁練習