gpt4 book ai didi

c++ - 基本菜单驱动程序 C++,无限循环

转载 作者:行者123 更新时间:2023-11-30 02:28:12 26 4
gpt4 key购买 nike

我一直在创建一个简单的菜单驱动的转换程序,但不知何故在其中一个函数(英里到公里)中创建了一个无限循环,并且不知道如何修复它。

第二个功能似乎工作得很好。非常感谢任何建议或提示。

#include <iostream>
#include <cmath>

using namespace std;

void showChoices();
double miles(double, double);
double degf(double, double);

int main ()
{
double x, y;
int choice;
do
{
showChoices();
cin >> choice;
switch (choice)
{
case 1:
cout << "Input miles to be converted, enter * to submit: \n";
cin >> x >> y;
cout << x << " is " << miles(x,y) << " in kilometers" << endl;
break;
case 2:
cout << "Input degrees (in Farenheit) to be converted, enter * to submit: \n";
cin >> x >> y;
cout << x << " is " << degf(x,y) << " in degrees Celsius" << endl;
break;
}
}
while (choice != 2);
return 0;
}
void showChoices()
{
cout << "MENU" << endl;
cout << "1: Miles to Kilometers " << endl;
cout << "2: Farenheit to Celsius " << endl;
}
double miles(double mi, double km)
{
return km = mi * 1.609344;
}
double degf(double fah, double cel)
{
return cel = 5*(fah-32)/9;
}

最佳答案

选择为 1:while 循环始终为真,因此进入循环。

添加选项为 3:用于退出。将 while 条件更改为 (choice != 3),这将打破循环。

关于c++ - 基本菜单驱动程序 C++,无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41013616/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com