標題:
[隨堂測驗] 三數中找出最小的數
[打印本頁]
作者:
tonyh
時間:
2013-11-23 17:18
標題:
[隨堂測驗] 三數中找出最小的數
三數中找出
最小
的數
作者:
周雍程
時間:
2013-11-23 17:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e;
cout<<"請輸入第一個數:";
cin >> a;
cout<<"請輸入第二個數:";
cin >> b;
cout<<"請輸入第三個數:";
cin >> c;
d=(a<b)?a:b;
e=(d<c)?d:c;
cout<<"三數中較小的數為:"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-11-23 17:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
cout<<"請輸入第三個數:";
cin>>c;
d=(a<b)?a:b;
e=(d<c)?d:c;
cout<<"三數中較小的數為"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-11-23 17:19
#include <iostream>
#include<cstdlib>
using namespace std;
int main( )
{
int a, b, c, d, e;
cout<<"輸入第1個數:";
cin>>a;
cout<<"輸入第2個數:";
cin>>b;
cout<<"輸入第3個數:";
cin>>c;
d=(a<b)?a:b;
e=(d<c)?d:c;
cout<<"最小的數是:"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-11-23 17:20
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
cout<<"請輸入第三個數:";
cin>>c;
d=(a<b)?a:b;
e=(d<c)?d:c;
cout<<"三數中最小的數為:"<<e<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-11-23 17:20
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int a,b,c,d,e;
cout<<"please enter the first number:"<<endl;
cin>>a;
cout<<"please enter the second number:"<<endl;
cin>>b;
cout<<"please enter the third number:"<<endl;
cin>>c;
d=(a<b)?a:b;
e=(d<c)?d:c;
cout<<"THE SMALLEST OF three:"<<e<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-11-23 17:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
cout<<"請輸入第三個數:";
cin>>c;
d=(a<b)?a:b;
e=(d<c)?d:c;
cout<<"三數中較小的數為:"<<e<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2