私はC++での初心者です、私は小さなプログラムを作成しようとしました、 私があればと少し問題がなかった(入力の値を== x)の他に...た場合(入力の値が==数)
誰か助けてもらえますか?
Int main() {... int choice;
do{
cout <<"choose from the list below to make the convertion"<<endl;
cout <<"1 : € to $, 2 :$ to €,3 :$ to £,4: £ to$\n";
cin >>choice;
if (choice =='1') {cout << "Pls enter € value to convert to $."<<endl;
cin >>value;
cout <<"euro\t\t to\t\t dollard\n"; cout <<value<<"\t\t\t\t"<<value*diff<<endl; }
else if (choice=='2'){.....
問題は何ですか?あなたは問題があると言いましたが、あなたはその問題が何であるか説明しませんでした。 –
数字と文字が混乱しています。 – SLaks
まあ問題は、例2または3を入力すると、最初の文if(choice = 1)を実行するときです。 – Mrkinix