標題:
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
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
cout<<n+9;
return 0;
}
複製代碼
作者:
葉佳和
時間:
2023-5-27 14:18
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
cout<<n+9;
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-5-27 14:20
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
n=n+9;
cout<<n<<endl;
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-5-27 14:21
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
cout<<n+9<<endl;
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-5-27 14:26
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
cout<<n+9<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2023-5-27 14:29
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
cout<<n+9<<endl;
}
複製代碼
作者:
陳宥霖
時間:
2023-5-27 14:29
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin>>a;
a=a+9;
cout<<a<<endl;
return 0;
}
複製代碼
作者:
李函庭
時間:
2023-5-27 14:32
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
cout<<n+9<<endl;
return 0;
}
複製代碼
作者:
宜儒
時間:
2023-6-2 22:56
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin>>n;
cout<<n+9;
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-11-4 17:55
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
int a=0;
cin>>a;
cout<<a+9<<endl;
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-24 17:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<a+9;
}
複製代碼
作者:
陳駿彥
時間:
2024-2-2 16:23
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<x+9;
return 0;
}
複製代碼
作者:
黃暐鈞
時間:
2024-2-3 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
cin>>n;
cout<<n+9<<endl;
}
複製代碼
作者:
蔡秉勛
時間:
2024-7-23 18:39
1
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2