標題:
[作業] 判斷a,b(2數比大小)
[打印本頁]
作者:
鄭繼威
時間:
2022-8-13 14:49
標題:
[作業] 判斷a,b(2數比大小)
本帖最後由 鄭繼威 於 2022-8-27 14:01 編輯
[attach]13414[/attach]
[attach]13415[/attach]
[attach]13492[/attach]
完成一個可以判斷a,b大小等於的程式
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"---判斷a,b---"<<endl;
int a;
cout<<"請輸入a:";
cin>>a;
int b;
cout<<"請輸入b:";
cin>>b;
if (a > b){
cout<<a<<">"<<b;
}
else if(a < b){
cout<<a<<"<"<<b;
}
else if(a==b){
cout<<a<<"="<<b;
}
else{
cout<<"其他例外";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2022-8-13 15:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if (a>b){
cout<<"a>b"<<endl;
}
else if (a<b){
cout<<"a<b"<<endl;
}
else{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2022-8-15 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"--判斷ab--"<<endl;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a>b){
cout<<a<<">"<<b<<endl;
}
else if(a==b){
cout<<a<<"="<<b<<endl;
}
else if(a<b){
cout<<a<<"<"<<b<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2022-8-16 02:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float a,b;
cout<<"---判斷a,b---"<<endl;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a==b)
cout<<a<<"="<<b<<endl;
else if(a>b)
cout<<a<<">"<<b<<endl;
else if(a<b)
cout<<a<<"<"<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2022-8-18 15:40
本帖最後由 黃品禎 於 2022-8-27 14:10 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"---判斷a,b---" <<endl;
int a,b;
cout<<"請輸入a:"<<endl;
cin>>a;
cout<<"請輸入b:"<<endl;
cin>>b;
if(a>b){
cout<<a<<">"<<b<<endl;}
else if(a==b){
cout<<a<<"="<<b;}
else{
cout<<a<<"<"<<b;}
system ("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-8-19 02:42
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
cout << "---判斷a,b---"<<endl;
cout << "請輸入a的數:";
cin >> a;
cout << "請輸入a的數:";
cin >> b;
if(a<=b)
{
cout << a << "<" << b << endl;
}
else if(a>=b)
{
cout << a << ">" << b << endl;
}
}
複製代碼
作者:
鄭繼威
時間:
2022-8-20 01:18
本帖最後由 鄭繼威 於 2022-8-27 01:12 編輯
回復
5#
黃品禎
邏輯沒錯,錯語法。看一下else的部分有寫錯哦(第15行以下)
回復
6#
楊芊琦
判斷式有點小錯(少一個判斷,試著輸入兩個一樣的數字你就懂我意思了)
作者:
王睿荻
時間:
2022-8-20 13:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b ;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a>b)
cout<<"a>b"<<endl;
else if(a==b)
cout<<"a=b"<<endl;
else if(a<b)
cout<<"a<b"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2022-8-20 14:01
本帖最後由 翁川祐 於 2022-8-27 15:12 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b ;
cout<<"---判斷a,b---"<<endl;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a>b)
cout<<"a>b"<<endl;
else if(a==b)
cout<<"a=b"<<endl;
else if(a<b)
cout<<"a<b"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2022-8-20 14:41
本帖最後由 林雋喆 於 2022-8-27 14:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float a,b;
cout<<"---判斷a,b---"<<endl;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a==b)
cout<<a<<"="<<b<<endl;
else if(a>b)
cout<<a<<">"<<b<<endl;
else if(a<b)
cout<<a<<"<"<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-8-27 01:10
本帖最後由 鄭繼威 於 2022-8-27 01:13 編輯
回復
8#
王睿荻
程式OK!但幫我把輸出的a,b變成是你輸入的數字,不懂可以看我上面的
圖片
回復
10#
林雋喆
邏輯沒錯,
錯語法
(看一下
if-else
的語法)
以上共8人
作者:
盧禹丞
時間:
2022-8-27 12:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"--判斷ab--"<<endl;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a>b){
cout<<a<<">"<<b<<endl;
}
else if(a==b){
cout<<a<<"="<<b<<endl;
}
else if(a<b){
cout<<a<<"<"<<b<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
羅暐傑
時間:
2022-8-27 13:41
本帖最後由 羅暐傑 於 2022-8-27 14:03 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a;
int b;
cout<<"請輸入A的數:"<<endl;
cin>>a;
cout<<"請輸入B的數:"<<endl;
cin>>b;
if (a>b){
cout<<a<<">"<<b<<endl;
} else if (a<b){
cout<<a<<"<"<<b<<endl;
} else {
cout<<a<<"="<<b<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-8-27 14:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"---判斷ab---"<<endl;
int a;
cout<<"輸入a";
cin>>a;
int b;
cout<<"輸入b";
cin>>b;
if (a > b){
cout<<a<<">"<<b;
}
else if(a < b){
cout<<a<<"<"<<b;
}
else if(a==b){
cout<<a<<"="<<b;
}
else{
cout<<"呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾瑄羽
時間:
2022-8-27 14:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if (a>b){
cout<<"a>b"<<endl;
}
else if (a<b){
cout<<"a<b"<<endl;
}
else{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳丞治
時間:
2022-8-27 14:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float a,b;
cout<<"---判斷a,b---"<<endl;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a==b)
cout<<a<<"="<<b<<endl;
else if(a>b)
cout<<a<<">"<<b<<endl;
else if(a<b)
cout<<a<<"<"<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-8-27 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a的數:";
cin>>a;
cout<<"請輸入b的數:";
cin>>b;
if(a>b)
{
cout<<a<<">"<<b;
}
else if(a<b)
{
cout<<a<<"<"<<b;
}
else
{
cout<<a<<"="<<b;
}
system("pause");
return 0;
}
複製代碼
作者:
羅紹齊
時間:
2022-8-27 14:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a>b)
{
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
cout<<"所以"<<"a"<<">"<<"b"<<endl;
}
else if(a<b)
{
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
cout<<"所以"<<"a"<<"<"<<"b"<<endl;
}
else
{
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
cout<<"所以"<<"a"<<"="<<"b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鍾瑄羽
時間:
2022-8-27 14:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a;
int b;
cout<<"請輸入A:"<<endl;
cin>>a;
cout<<"請輸入B:"<<endl;
cin>>b;
if (a>b){
cout<<a<<">"<<b<<endl;
} else if (a<b){
cout<<a<<"<"<<b<<endl;
} else {
cout<<a<<"="<<b<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-8-27 14:20
本帖最後由 鄭繼威 於 2022-8-27 14:27 編輯
回復
19#
鍾瑄羽
回復
17#
楊芊琦
盡量使用編輯功能哦
剩
陳泓亦
要補上
作者:
陳泓亦
時間:
2022-9-3 13:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"---判斷a,b---"<<endl;
int a;
cout<<"請輸入a:";
cin>>a;
int b;
cout<<"請輸入b:";
cin>>b;
if (a > b){
cout<<a<<">"<<b;
}
else if(a < b){
cout<<a<<"<"<<b;
}
else if(a==b){
cout<<a<<"="<<b;
}
else{
cout<<"其他例外";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宗儒
時間:
2023-12-21 18:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"---判斷a,b---"<<endl;
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if (a > b)
cout<<a<<">"<<b;
else if(a < b)
cout<<a<<"<"<<b;
else
cout<<a<<"="<<b;
return 0;}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2