4つの算術演算の1つ、それらの演算の2つの引数を入力として受け取り、結果を出力する小さな電卓を作成するにはどうすればよいですか?それと同じくらい簡単ですが、実際の計算機は必要ありません。
これが私がこれまでに試したことですが、うまくいきませんでした:
#include <iostream>
#include <string>
using namespace std;
int main()
{
int x,y,result;
string arithmatic;
cout<<"enter the first number:";
cin>>x;
cout<<"enter the second number:";
cin>>y;
cout<<"use one of the four artimatic operations /, *, + or - :";
cin>>arithmatic;
if (arithmatic=="/" )
result=x/y;
cout<<"x / y ="<<result;
if (arithmatic == "*")
result=x*y;
cout<<"x * y ="<<result;
if (arithmatic == "+")
result = x + y;
cout<<"x+y ="<<result;
if (arithmatic == "-")
result = x-y;
cout<<"x-y ="<<result;
else
cout<<"what is this? i said use arithmatic operations!";
return 0;
}
私はこのプログラムに多くの間違いがあることを知っています、私はちょうど学び始めました、そしてこの練習は本の中にありました。