標題:
110 基本認識 (比大小)
[打印本頁]
作者:
陳育霖
時間:
2023-7-29 11:47
標題:
110 基本認識 (比大小)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
(1)請撰寫一程式,讓使用者輸入三個整數a、b、c,並依序輸出(2)~(4)。
(2)若a大於等於60且小於100則輸出1,否則輸出0。
(3)計算b+1再除以10的值,四捨五入至小數點後第二位。
(4)若a大於等於c,則輸出a,否則輸出c。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
三個整數
輸出說明
依序輸出設計說明2~4
範例輸入
70
100
60
範例輸出
1
10.10
70
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳育霖
時間:
2023-7-29 11:58
#include<bits/stdc++.h>
using namespace std;
int a, b, c;
int main()
{
cin >> a >> b >> c;
cout << (a >= 60&&a < 100) << endl;
printf("%.2f\n", (b+1)/10.0);
cout << (a > c? a: c) << endl;
return 0;
}
複製代碼
作者:
曾宥程
時間:
2023-7-29 11:59
#include<bits/stdc++.h>
using namespace std;
int a,b,c;
int main()
{
cin >> a >> b >> c;
if(a>=60 && a<100)
cout << "1\n";
else
cout << "0\n";
printf("%.2f\n",(b+1)/10.0);
if(a>=c)
cout << a;
else
cout << c;
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2023-7-29 12:02
#include<bits/stdc++.h>
using namespace std;
int a,b,c;
int main()
{
cin >> a >> b >> c;
cout <<(a>=60 && a<100) <<endl;
printf("%.2f\n",(b+1)/10.0);
cout << (a>c?a:c)<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2