2

このコンパイル エラーが発生する理由がわかりません。文字列を定義する通常の方法を試しましたが、 std::string も試しましたが、どちらも機能しませんでした。また、関数を印刷しようとしている方法に問題がある可能性があると思います。

#include "stdafx.h"
#include <iostream>
#include <cmath>
#include <string>

float userInput1() // Defines the inputs from the user
{
using namespace std;
    cout << "Please enter first number" << endl;
    float number1;
    cin >> number1;

    return number1;
}

float userInput2() // Defines the inputs from the user
{
using namespace std;
    cout << "Please enter second number" << endl;
    float number2;
    cin >> number2;

    return number2;
}

std::string getOperation()
{
using namespace std;
    cout<<"Please enter the operator. + - * /" << endl;
    std::string userOperator;
    cin>>userOperator;

    return userOperator;
}

float computeValue(float value1, float value2, std::string operation)
{
using namespace std;

    if(operation == '+')
    {
        cout<< value1 + value2<< endl;
    }else if(operation =='-')
    {
        cout<< value1 - value2<< endl;
    }else if(operation =='*')
    {
        cout<< value1 * value2<< endl;
    }else if(operation == '/')
    {
        cout<< value1 / value2<< endl;
    }else
    {
        cout<< "Please enter: + - * /"<< endl;
    }
    return 0;
}


int main(){
using namespace std;

    computeValue(userInput1(), userInput2(), getOperation());

return 0;
}
4

2 に答える 2