我一直在说我是一名新的C ++程序员
当我解决简单的问题以剃光我的技能或你们所说的任何事情时...
我面对这种不断发生的奇怪事情
在线法官不断给我一个错误的答案...

现在确保我做的一切正确
我调试并使用许多输入,每次我得到正确的输出。

现在,我会给您一个简单的代码,正确的代码会给我一个错误,其中包含包含
问题。

让我们从链接开始:http://www.urionlinejudge.com.br/repository/UOJ_1036_en.html
现在的代码:

#include <cmath>
#include <iomanip>
#include <iostream>

void Formula(float v1, float v2, float b);

using namespace std;
int main(int argc, char **argv) {
    //making the variables ....
    float a, b, c;
    float v1, v2;

    //reading the variables
    cin >> a >> b >> c;

    //assign v1,v2
    v1 = (pow(b, 2) - (4 * a * c));
    v2 = 2 * a;

    //making sure that i can use V1 , V2
    if (v1 < 0 || v2 == 0) {
        cout << "Impossivel calcular" << endl;
    } //end of the if condition .....
    else {
        //at this condition i will call a function that calculate the square root(s)
        Formula(v1, v2, b);
    } //end of the else condition

    return 0;
} //end of the main method.....

//////////////////////////
//////////////////////////
//////////////////////////

//making the methods
void Formula(float v1, float v2, float b) {
    //first square root...
    float result = -b + sqrt(v1);
    result /= v2;
    cout << "R1 = " << fixed << setprecision(5) << result << endl;
    //second square root ...
    result = -b - sqrt(v1);
    result /= v2;
    cout << "R1 = " << fixed << setprecision(5) << result << endl;
} //end of the method .....


好吧,这是最简单的例子...
现在这可能是我的错误原因,因为我是C / C ++的新手
如果有什么问题请
告诉我,在大多数情况下我应该尝试的最佳输入是什么?

最佳答案

void Formula(float v1, float v2, float b) {
    //first square root...
    float result = -b + sqrt(v1);
    result /= v2;
    cout << "R1 = " << fixed << setprecision(5) << result << endl;
    //second square root ...
    result = -b - sqrt(v1);
    result /= v2;
    cout << "R1 = " << fixed << setprecision(5) << result << endl;
} //end of the method .....


将第二个R1 =修改为R2 =

09-09 20:39