- 註冊時間
- 2008-10-11
- 最後登錄
- 2015-10-28
- 主題
- 查看
- 積分
- 23
- 閱讀權限
- 20
- 文章
- 18
- 相冊
- 0
- 日誌
- 0
狀態︰
離線
|
我是用Visual C++寫的
題目一
#include <iostream>
#include "math.h"
using namespace std;
int main(void)
{
int a, b, c;
cout << "請數第一個邊:";
cin >> a;
cout <<endl;
cout << "請數第二個邊:";
cin >> b;
cout <<endl;
cout << "請數第三個邊:";
cin >> c;
cout <<endl;
if(a+b>c && b+c>a && c+a>b)
cout << "請三邊為三角形" << endl;
else
cout << "請三邊不為三角形" << endl;
return 0;
}
題目二 -> 三角形的定義應該是任兩邊合大於第三邊吧!有點忘記了所以不能輸入負數因為不合理
#include <iostream>
using namespace std;
int main(void)
{
int x = -1, y[3] = {0} ;
cout << "請輸入三個數:" << endl ;
for( int i = 0 ; i <= 2 ; i++ ) {
cin >> y ;
if ( y > x )
x = y ;
}
cout << endl << "最大值為:" << x << endl;
return 0;
}
範例
#include <iostream>
using namespace std;
int main(void)
{
int i =0;
cout << "請輸入一整數:";
cin >> i;
if(i >= 60)
cout << endl << "此數大於等於60" << endl;
else
cout << endl << "此數小於60" << endl;
return 0;
} |
-
總評分: 威望 + 2
查看全部評分
|