本帖最後由 駱顗安 於 2020-6-11 17:05 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a,b,c,d,e;
- cout<<"請依序輸入三個數:";
- cin>>a>>b>>c;
- cout<<endl;
- cout<<"三數中數字最大的為";
- d=a>b?a:b;
- e=c>d?c:d;
- cout<<e;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a,b,c;
- cout<<"請依序輸入三個數:";
- cin>>a>>b>>c;
- cout<<endl;
- cout<<"三數中數字最大的為";
- for(int m=a+b+c;m>=0;m-=1)
- if(m==a)
- {
- cout<<a;
- m=0;
- }
- else if(m==b)
- {
- cout<<b;
- m=0;
- }
- else if(m==c)
- {
- cout<<c;
- m=0;
- }
- system("pause");
- return 0;
- }
複製代碼 |