Board logo

標題: 101 基本認識-計算+9 [打印本頁]

作者: 鄭繼威    時間: 2023-5-27 12:06     標題: 101 基本認識-計算+9

本帖最後由 鄭繼威 於 2023-5-27 15:08 編輯

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讓使用者輸入一整數,並輸出該整數「加9後的結果。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
一個整數

輸出說明
輸入值加9

範例輸入
0
範例輸出
9

本帖隱藏的內容需要回復才可以瀏覽

作者: 陳牧謙    時間: 2023-5-27 14:12

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.         int n;
  6.         cin>>n;
  7.         cout<<n+9;
  8.         return 0;
  9.        
  10.        
  11. }
複製代碼

作者: 葉佳和    時間: 2023-5-27 14:18

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.         int n;
  6.         cin>>n;
  7.         cout<<n+9;
  8.         return 0;
  9.       
  10.       
  11. }
複製代碼

作者: 吳俊頡    時間: 2023-5-27 14:20

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int n;
  6.     cin>>n;
  7.     n=n+9;
  8.     cout<<n<<endl;

  9.     return 0;                  
  10. }
複製代碼

作者: 翁川祐    時間: 2023-5-27 14:21

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main(){
  4.    
  5.     int n;
  6.     cin>>n;
  7.     cout<<n+9<<endl;

  8.     return 0;
  9. }
複製代碼

作者: 林雋喆    時間: 2023-5-27 14:26

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. int n;
  5. cin>>n;
  6. cout<<n+9<<endl;
  7. system("pause");
  8. return 0;
  9. }
複製代碼

作者: 徐啟祐    時間: 2023-5-27 14:29

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4.         int n;
  5.         cin>>n;
  6.         cout<<n+9<<endl;
  7. }
複製代碼

作者: 陳宥霖    時間: 2023-5-27 14:29

  1. #include<bits/stdc++.h>

  2. using namespace std;

  3. int main()
  4. {
  5.     int a;
  6.     cin>>a;
  7.     a=a+9;
  8.     cout<<a<<endl;
  9.       
  10.     return 0;
  11. }
複製代碼

作者: 李函庭    時間: 2023-5-27 14:32

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     int n;
  6.     cin>>n;
  7.     cout<<n+9<<endl;
  8.     return 0;   
  9.    
  10. }
複製代碼

作者: 宜儒    時間: 2023-6-2 22:56

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n;
  4. int main()
  5. {
  6.         cin>>n;
  7.         cout<<n+9;
  8.         return 0;
  9. }
複製代碼

作者: 黃品禎    時間: 2023-11-4 17:55

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     cin.tie(0);
  6.     cin.sync_with_stdio(0);
  7.     int a=0;
  8.     cin>>a;
  9.     cout<<a+9<<endl;

  10. return 0;
  11. }
複製代碼

作者: 李宗儒    時間: 2024-1-24 17:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    int a;
  7.    cin>>a;
  8.    cout<<a+9;
  9. }
複製代碼

作者: 陳駿彥    時間: 2024-2-2 16:23

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int x;
  6.     cin>>x;
  7.     cout<<x+9;
  8.     return 0;
  9. }
複製代碼

作者: 黃暐鈞    時間: 2024-2-3 14:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n;
  7.     cin>>n;
  8.     cout<<n+9<<endl;
  9. }
複製代碼

作者: 蔡秉勛    時間: 2024-7-23 18:39

  1. 1
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2