1

私は今日 C++ を始めたばかりで、高度なテキストベースの電卓に取り組んでいます。とにかく、私は指数に取り組んでいますが、プログラムを開始し、指数モードを開始する文字列を入力すると、指数モードにはならず、通常の電卓モードになるだけです。ここに私のコードがあります:

//
//  main.cpp
//  C++ Calculator
//  This is just a basic Calculator Application to be run through the command line.
//  v.0.02 - Second version of calculator, basic text, command line interface, loop.
//  Created by Johnny Carveth on 2013-04-17.
//  Copyright (c) 2013 Johnny Carveth. All rights reserved.
//
#include <math.h>
#include <iostream>
int int1, int2, answer;
bool bValue(true);
std::string oper;
std::string cont;
using namespace std;
std::string typeOfMath;
double a;
double b;
int answerExponent;


int main(int argc, const char * argv[])
{

    // Taking user input, the first number of the calculator, the operator, and second number.   Addition, Substraction, Multiplication, Division
    cout<<"______________________________________________\n";
    cout<<"|Welcome to The ExpCalc! Do you want to do   |\n";
    cout<<"|Exponent Math, or Basic Math(+, -, X, %)    |\n";
    cout<<"|Type in 'B' for basic Math, and'E' for      |\n";
    cout<<"|Exponential Math! Enjoy! (C) John L. Carveth|\n";
    cout<<"|____________________________________________|\n";
    cin>> typeOfMath;
    if(typeOfMath == "Basic" || "basic" || "b" || "B")
    {
        cout << "Hello! Please Type in your first integer!\n";
        cin>> int1;
        cout<<"Great! Now Enter your Operation: ex. *, /, +, -...\n";
        cin>> oper;
        cout<<"Now all we need is the last int!\n";
        cin>> int2;

        if (oper == "+") {
            answer = int1 + int2;
        }
        if (oper == "-") {
            answer = int1 - int2;

        }if (oper == "*") {
            answer = int1 * int2;
        }if (oper == "/") {
            answer = int1 / int2;
        }
        cout<<answer << "\n";
        cout<<"Thanks for Using The ExpCalc!\n";

    }else if(typeOfMath == "Exp" || "E" || "e" || "Exponent"){
        cout<<"Enter the desired Base. Example: 2^3, where 2 is the base.\n";
        cin>> a;
        cout<<"Now what is the desired exponent/power of the base? Ex. 2^3 where 3 is the exponent!\n";
        cin>>b;
        answerExponent = double (pow(a,b));
    } else(cout<<"Wrong String!");
}

役立つヒントのみです。C++ を使用するのはこれが初めてであることを思い出してください。また、何か役に立てば、私はXCode 4を使用しています!

4

1 に答える 1

4

if 式を見たいと思うかもしれません

if(typeOfMath == "Basic" || "basic" || "b" || "B")

|| の間のそれぞれのもの 条件として評価されます。したがって、次のようなものを試してください:

if(typeOfMath == "Basic" || 
   typeOfMath == "basic" ||
   typeOfMath == "b" || 
   typeOfMath =="B") { 
// do basic

に同じ変更を加えますelse if(typeOfMath == "Exp" || "E" || "e" || "Exponent")

于 2013-04-17T22:10:34.950 に答える