#11291: 可以幫我看看哪裡出問題嗎


oldpig123 (o)

學校 : 臺中市私立明道高級中學
編號 : 58955
來源 : [111.252.174.107]
最後登入時間 :
2021-02-09 20:39:27
a005. Eva 的回家作業 -- POJ | From: [111.252.180.229] | 發表日期 : 2016-08-18 21:40

RT

在自己電腦內運作正常,但放上來就不行了

是 C++

 

 

#include <iostream>
using namespace std;
int main() {
    int a,b,c,d,e;
    while (cin >> a >> b >> c >> d) {
        if ((b - a) == (d - c)) {
            e = b - a;
            cout << a << " " << b << " " << c << " " << d << " " << d + e << endl;
        }
        else {
            e = float(b / a);
            cout << a << " " << b << " " << c << " " << d << " " << d * e << endl;
        }
    }
    return 0;
}

 
#11295: Re:可以幫我看看哪裡出問題嗎


who_am_I (kruztw)

學校 : 國立臺灣師範大學
編號 : 54056
來源 : [36.224.144.147]
最後登入時間 :
2023-04-22 22:46:31
a005. Eva 的回家作業 -- POJ | From: [36.234.83.13] | 發表日期 : 2016-08-22 14:25

RT

在自己電腦內運作正常,但放上來就不行了

是 C++

 

 

#include
using namespace std;
int main() {
    int a,b,c,d,e;
    while (cin >> a >> b >> c >> d) {
        if ((b - a) == (d - c)) {
            e = b - a;
            cout << a << " " << b << " " << c << " " << d << " " << d + e << endl;
        }
        else {
            e = float(b / a);
            cout << a << " " << b << " " << c << " " << d << " " << d * e << endl;
        }
    }
    return 0;
}

測資數目呢?

 

int n; // n筆測資

while(cin >> n){

while(n--){

        cin >> a >> b >> c >> d;

.........................正文.....................

}

}




 
ZeroJudge Forum