- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一点帮助,该程序用于计算和输出用户的体重与他们在我们太阳系中行星上的体重的关系。
当我尝试在该程序中使用switch语句时,整个语句被标记为错误,特别是“非法大小写错误”和“case标签只能在switch中使用”错误。我尝试将自己的语句与课本中的其他语句进行比较但没有区别。请告诉我如何解决此问题。
#include <cctype>
#include <iostream>
#include <cmath>
using namespace std;
double weight;
double planet_weight;
string planet;
double weightonplanet = 0;
enum planet_names{Mercury,Venus,Earth,Moon,Mars,Jupiter,Saturn,Uranus,Neptune,Pluto};
int main()
{
cout << "********************************************************************" << endl;
cout << endl;
cout << "Enter the name of a planet from the following options:" << endl;
cout << "(Mercury,Venus,Earth,Moon, Mars,Jupiter,Saturn,Uranus,Neptune,Pluto)" << endl;
cout << endl;
cout << "********************************************************************" << endl;
cin >> planet;
cout << endl;
cout << endl;
cout << "Please enter your current weight (ex:205)" << endl;
cin >> weight;
cout << endl;
cout << "You have entered " << planet << "." << endl;
cout << "You currently weigh " << weight << "lbs." << endl;
cout << "Your weigh on " << planet << "is " << weightonplanet << " ." << endl;
while (true)
{
switch (string planet);
{
case Mercury:
weightonplanet = weight * 0.4155;
break;
case Venus:
weightonplanet = weight * 0.8975;
break;
case Earth:
weightonplanet = weight * 1.0;
break;
case Moon:
weightonplanet = weight * 0.166;
break;
case Mars:
weightonplanet = weight * 0.3507;
break;
case Jupiter:
weightonplanet = weight * 2.5374;
break;
case Saturn:
weightonplanet = weight * 1.0677;
break;
case Uranus:
weightonplanet = weight * 0.8947;
break;
case Neptune:
weightonplanet = weight * 1.1794;
break;
case Pluto :
weightonplanet = weight * 0.899;
break;
}
}
return weightonplanet;
最佳答案
问题1:假冒分号。
switch (string planet);
^
remove me!
string
if
-
else-if
语句比较字符串。听起来很丑,但对于简短列表,这可能是最快的方法。注意:如果走这条路线,您可以直接比较
std::string
,因此不需要
strcmp
。
if (planet == "Mercury")
{
weightonplanet = weight * 0.4155;
}
if (planet == "Venus")
{
weightonplanet = weight * 0.8975;
}
...
enum
,然后打开
enum
。但是,如果要这样做,为什么不消除
enum
和
switch
并将行星名称直接映射到行星的重力呢?
std::map
。
#include <iostream>
#include <string> // added to get std::string. Sometimes you get it free from
// iostream, but you can't count on this, so leaving string
// out could be leaving a boobytrap for someone in the future
// If you use it, include it.
#include <map> // added to get std::map
using namespace std; // often dangerous. Use with caution
int main()
{
// No need for these variables to be global. Enclose them in main's scope
double weight;
string planet;
// removed a couple variables because they're not needed anymore
// you can chain <<s into one big statement. No need to line them up all nice and purty
// I just find it easier to read. Easier to read is easier to debug and maintain,
// so it worth the time spent. Your mileage may vary.
cout << "********************************************************************" << endl
<< endl
<< "Enter the name of a planet from the following options:" << endl
<< "(Mercury,Venus,Earth,Moon, Mars,Jupiter,Saturn,Uranus,Neptune,Pluto)" << endl
<< endl
<< "********************************************************************" << endl;
cin >> planet;
cout << endl
<< endl
<< "Please enter your current weight (ex:205)" << endl;
cin >> weight;
// can't switch on a string so here I'm mapping planet names to gravity
map<string, double> weightmap =
{
{ "Mercury", 0.4155 },
{ "Venus", 0.8975 },
{ "Earth", 1.0 },
{ "Moon", 0.166 }, // not a planet.
{ "Mars", 0.3507 },
{ "Jupiter", 2.5374 },
{ "Saturn", 1.0677 },
{ "Uranus", 0.8947 },
{ "Neptune", 1.1794 },
{ "Pluto", 0.899 } // not a planet.
};
// so now here we just look up the planet name in the map, and get gravity
// one multiplication later, we're done!
cout << endl
<< "You have entered " << planet << "." << endl
<< "You currently weigh " << weight << "lbs." << endl
<< "Your weight on " << planet << "is " << weight * weightmap[planet] << " ." << endl;
}
"Saturn"
与
"saturn"
不同。您可能希望将用户的输入转换为小写或大写,而仅测试一种情况。
map
中,则 map 将为该行星创建一个新条目并将其初始化为零。因此,就该程序而言,“Iscandar”具有零重力。如果您想在
map
中不捕获行星,请使用
std::map::find
。如果找不到输入,请要求用户提供其他输入。或无情地 mock 他们并退出。您的来电。
map
为您创建条目的快速说明。这可能非常有用,例如稀疏项目的频率计数器,但是如果程序要长时间运行,请注意不要用错别字填满过多的内存。
using namespace std;
:
Why is "using namespace std;" considered bad practice?
关于c++ - C++中的枚举/非法switch语句错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61181221/
是否有使用 switch 语句检查数字 0-9 的简单方法?我正在编写一个程序来检查某些字符和数字。就像检查“\0”、“F”或“f”一样,想知道是否还有一种方法可以以类似的方式检查 0-9。我知道我可
我有一些数据需要转换,为此我需要一个超过 50 个案例的切换条件,我需要 3 次相同的案例,但在第三次我需要 50 个案例和一些更多,我不想写两次相同的代码。也许有可能做这样的事情。 switch (
我遇到这种情况,我必须检查两个 GET 变量。在检查语句内的第一个 switch 语句后,必须在第一个 case 循环内的第二个 switch 语句中检查第二个变量。 我无法在这里发布确切的代码,但这
如何使用函数指针代替 switch 语句? 最佳答案 与 ars 发布的链接略有不同的方法:您可以将 switch 语句中的值用作函数指针数组中的数组索引。所以不要写 switch (i) {
我必须评估很多条件。就我而言,我必须做这样的事情: switch(id) { case 5: // switch some other cases here case
switch 按钮位于 switch 语句内,但仅在 switch 语句外部时才有效这是我的代码:
我试图在 switch 语句中有一个 case 跳转到不同的 switch 语句。 在实践中,我希望用户在文本框中键入“关闭页面”,并且在浏览器关闭页面之前,我希望询问用户是否确定。输入“yes”将关
(引用java)我试图确定哪个更好,编写更多代码并可能节省一些计算时间,或者编写更少代码但可能牺牲一些计算时间。这就是我好奇的地方这样做会更有效率吗: switch (availability) {
我正在尝试构建一个 Android 应用程序,该应用程序可以访问加速度计传感器,并在单击按钮时将加速度计值(由 <> 包围)输出到串行 USB。当我更新值并尝试在 onClick 命令中调用它时遇到问
如何使用 Dwoo 模板引擎实现 switch case 语法。 最佳答案 {if 3 == 5} never gonna happen {elseif 3 == 3} if you don'
我想知道一个大的 switch 语句和几个小的 switch 语句之间是否有性能差异。 包含数百个案例的大型 switch 语句。 switch(quest){ case 1:
用户在 2 个选择框中进行选择后,我尝试计算出报值(value)。 看起来 1 需要 2 个 switch 语句。这可能吗? (可能的值比下面的值多得多。为了清楚起见,我删除了它们) var wor
我在主 while 循环内有一个开关,它将运行我的游戏。我正在尝试打破我的开关,以便转到不同的案例。下面的例子更好地解释了这一点: int j = 0; While(1){ switch(j){ ca
我用 Java 创建了一个菜单,其中每个选项都有另一个菜单。我想知道是否可以从内部菜单退出回到主菜单。 编辑:添加了主菜单选项 System.out.println("Main Menu");
我有一个计算新分数的方法。下面的方法有效,但问题是代码本身看起来可以被显着清理。我只是不知道什么是最好的方法。我根据 filterString 和枚举 individualScoreState 分配
在 Lisp 中使用字符串切换语句。 (defun switch(value) (case value (("XY") (print "XY"))
我想做这样的事情: int i = 0; switch(difficulty) { case 1: i++; break; case 2: i--; break; defaul
在 Obj-c 中,我做了一个 switch 语句,我曾经使用 UIsplitviewcontroller 在我的 iPad 应用程序中四处移动现在我想快速地做同样的事情……我试了几个小时,现在我唯一
我想写一个结构如下的报告: \begin{document} \input[option=a]{class} \input[option=b]{class} \in
我正在认真阅读 ngSwitch 的 AngularJS API 引用。当我谈到那部分时的指令: place an expression on the on="..." attribute (or t
我是一名优秀的程序员,十分优秀!