SOGO論壇

標題: 求助程式語言之高手 [列印本頁]

作者: 轟轟轟    時間: 2010-1-27 00:05:05     標題: 求助程式語言之高手

提示: 作者被禁止發言或禁止訪問或刪除帳號,本文內容已被系統自動屏蔽。
作者: huyoho2000    時間: 2010-1-27 20:54:30

我是用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;
}




歡迎光臨 SOGO論壇 (https://oursogo.com/) Powered by OURSOGO.COM