標題:
三數中找出最大的數
[打印本頁]
作者:
陳品肇
時間:
2021-11-20 10:02
標題:
三數中找出最大的數
本帖最後由 陳品肇 於 2021-11-20 11:28 編輯
[attach]12301[/attach]
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
// 輸入方法一 空白建隔開輸入的數值
//cin>>a;
//cin>>b;
//cin>>c;
// 輸入方法二 當有多個輸入可以 用 >> 往下接
cin>>a>>b>>c;
// tmp拿來暫存使用
int tmp=0;
// 邏輯方法1
if(a>b)
{
tmp =a;
}else
{
tmp =b;
}
if(tmp>c)
{
cout<<tmp<<endl;
}else
{
cout<<c<<endl;
}
// 邏輯方法2
// 就是if else 的縮寫
// if(a>b) a>b是真的 就把a指派給tmp ,a>b是假的 就把冒號後面的指派給tmp
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2021-11-20 11:28
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int tmp=0;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2021-11-20 11:29
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int t=0;
t = (a>b) ? a:b;
t = (t>c) ? t:c;
cout<<t<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
林紘憲
時間:
2021-11-20 11:30
[code][/code]#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int tmp=0;
if(a>b)
{
tmp =a;
}else
{
tmp =b;
}
if(tmp>c)
{
cout<<tmp<<endl;
}else
{
cout<<c<<endl;
}
system ("pause");
return 0;
}
作者:
鍾易澄
時間:
2021-11-20 11:30
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
int s =0;
s=x=y?x:y;
s =s > z ? s:z;
cout<<s<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2021-11-20 11:30
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int tmp=0;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2021-11-20 11:31
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int tw=0;
int a,b,c;
cin>>a>>b>>c;
tw =(a>b) ? a:b ;
tw =(tw>c) ? tw:c;
cout<<tw<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
田家齊
時間:
2021-11-20 11:32
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
int a=0;
a =(x>y) ? x:y;
a =(a>z) ? a:z;
cout<<a<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2021-11-20 11:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int tmp=0;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2021-11-20 11:35
本帖最後由 許宸瑀 於 2021-11-20 11:54 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b,c;
cin>>a>>b>>c;
int tmp=0;
if(a>b)
{
tmp =a;
}else
{
tmp =b;
}
if(tmp>c){
cout<<tmp<<endl;
}else
{
cout<<c<<endl;
}
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2021-11-20 11:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,tmp;
cout<<"請依序輸入三個數字:";
cin>>a>>b>>c;
tmp = 0;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<"三數中最大的數是:"<<tmp<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2021-11-20 11:37
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int tmp=0;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
林鴻慶
時間:
2021-11-20 11:38
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int tmp=0;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2021-11-27 09:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸入三個數字:";
cin>>a>>b>>c;
int x=0;
if(a>b)
{
x =a;
}else
{
x =b;
}
if(x>c)
{
cout<<"三數中最大的數為:"<<x<<endl;
}else
{
cout<<"三數中最大的數為:"<<c<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳駿彥
時間:
2021-11-27 09:37
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請依序輸入三個數字:";
cin>>a>>b>>c;
int tmp =0;
if(a>b)
{
tmp =a;
}else
{
tmp =b;
}
cout<<"三數中最大的數是:";
if(tmp>c)
{
cout<<tmp<<endl;
}else
{
cout<<c<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2021-11-27 09:56
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
int x;
x = (a>b) ? a:b;
x = (x>c) ? x:c;
cout<<x<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
黃奕澄
時間:
2021-12-11 09:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,tmp;
cout<<"請依序輸入三個數字:";
cin>>a>>b>>c;
tmp = (a>b) ? a:b;
tmp = (tmp>c) ? tmp:c;
cout<<"三個數中最大的數為:"<<tmp<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2