標題:
101 基本認識 (輸入輸出)
[打印本頁]
作者:
陳育霖
時間:
2023-7-28 16:25
標題:
101 基本認識 (輸入輸出)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入一整數,並輸出該整數「加9」後的結果。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
一個整數
輸出說明
輸入值加9
範例輸入
0
範例輸出
9
本帖隱藏的內容需要回復才可以瀏覽
作者:
王銘鴻
時間:
2023-7-29 10:28
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin >> n;
cout << n+9 <<endl;
return 0;
}
複製代碼
作者:
曾宥程
時間:
2023-7-29 10:30
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
cout << n+9 << endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2