- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我改进了 switch 语句,并且一切正常,除非我想选择另一个选项,它只是重复打印语句,而不是我选择另一个类别。所以基本上它只循环一次。之前我使用 if 语句来查看该人是否想进入另一个类别,但现在我添加了退出功能,以便用户可以停止输入。
while (1)
{
printf("Please enter the corresponding number to the the category on the list\n");
printf("===========\n");
printf("1.Beverage\n2.Pastry\n3.Canned Goods\n4.Dairy\n5.Baking Goods\n6.Frozen Goods\n7.Meat\n8.Produce\n9.Cleaners\n10.Paper Goods\n11.Personal Care\n12.Other\n13.Save and Exit\n\n");
printf("Enter the number here: ");
scanf("%d",&Num);
printf("\n\n");
switch(Num){
case 1:
for(a=0;Stop!=0;a++){
printf("Please Enter Item Name\n");
scanf("%s",Items[a].Beverage);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[a].BeverageNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 2:
for(b=0;Stop!=0;b++){
printf("Please Enter Item Name\n");
scanf("%s",Items[b].Pastry);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[b].PastryNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 3:
for(c=0;Stop!=0;c++){
printf("Please Enter Item Name\n");
scanf("%s",Items[c].CannedGoods);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[c].CannedGoodsNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 4:
for(d=0;Stop!=0;d++){
printf("Please Enter Item Name\n");
scanf("%s",Items[d].Dairy);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[d].DairyNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 5:
for(e=0;Stop!=0;e++){
printf("Please Enter Item Name\n");
scanf("%s",Items[e].BakingGoods);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[e].BakingGoodsNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 6:
for(f=0;Stop!=0;f++){
printf("Please Enter Item Name\n");
scanf("%s",Items[f].FrozenGoods);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[f].FrozenGoodsNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 7:
for(g=0;Stop!=0;g++){
printf("Please Enter Item Name\n");
scanf("%s",Items[g].Meat);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[g].MeatNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 8:
for(h=0;Stop!=0;h++){
printf("Please Enter Item Name\n");
scanf("%s",Items[h].Produce);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[h].ProduceNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 9:
for(i=0;Stop!=0;i++){
printf("Please Enter Item Name\n");
scanf("%s",Items[i].Cleaners);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[i].CleanersNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 10:
for(j=0;Stop!=0;j++){
printf("Please Enter Item Name\n");
scanf("%s",Items[j].PaperGoods);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[j].PaperGoodsNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 11:
for(k=0;Stop!=0;k++){
printf("Please Enter Item Name\n");
scanf("%s",Items[k].PersonalCare);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[k].PersonalCareNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 12:
for(l=0;Stop!=0;l++){
printf("Please Enter Item Name\n");
scanf("%s",Items[l].Other);
printf("Please Enter The Amount of Each Item\n");
scanf("%d",&ItemsNum[l].OtherNum);
printf("Would you like to enter another item if yes type 1 if not type 0\n");
scanf("%d",&Stop);}
break;
case 13:
printf("\n\n\t\t\tThanks for your time!\n\n\n");
exit(0);
}
最佳答案
您需要将break语句从for循环中删除并放入switch中。您正在破坏 forloop 而不是 switch。每个案例的 for 循环只会执行一次,然后由于您放置中断的位置而移动到下一个案例。更改语句
case NUM:
for(a=0;Stop!=0;a++){
//doing prompts
break;
}
至
case NUM:
for(a=0;Stop!=0;a++){
//doing prompts
}break; //break stops the switch preventing the default from being executed incorrectly
您也可以在 do while 循环末尾说 while(Hault);
。
关于c - C 语言中的循环切换菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53716078/
我正在尝试创建一个简单的小部件,它只有一个切换按钮,但我的 AVD 模拟器上不断出现错误,提示“加载小部件有问题”。 似乎是因为我在小部件布局中添加了开关或切换按钮。 为了测试它,我创建了一个新的空
我正在使用 GLFW 进行键盘输入,但处理速度太快,因此我的 bool 开关在一次按下时被更改了 10 次,因为输入是每一帧处理的。我只需要按一次空格键即可切换状态。我当前的代码如下: if (glf
我希望完成一个相当简单的任务(我希望!) 我有两个 div 标签和一个 anchor 标签,像这样: forgot password? 我希望使用 anchor 标记在两个 div 标记之间切换,
我已经尝试了几种不同的方法,但似乎无法弄清楚如何将 span 的类从“die2”切换到“die3”以及将 div 的显示样式从“block”切换到“none”。有人有任何解决方案吗? (基本上当页面加
我正在尝试制作一个交换小部件,该小部件显示两个不同的文本。激活时,它下面显示一个TextField,顶部是不可见的,而禁用时它上面显示一个Text,而底部是不可见。但是它没有在屏幕上显示任何内容,只是
我有一个简单的 Angular 应用程序,它使用两个模板和 Controller 。放置两个按钮来切换 View 。它们调用在控件内定义的函数,该函数使用 window.location='' 来切换
我想要一个 div 切换它的类(切换)onclick,然后再次恢复到原来的类 onclick 我的代码是: function myfunc() { //the code over here
我确信这是一个常见问题,我已经尝试了该网站上的许多线程来尝试解决我的问题,但我似乎无法使其正常工作。基本上我有一个子菜单,当父菜单悬停在其上时需要显示该子菜单,但是如果您在加载完成之前将鼠标从菜单项上
我制作了一个 JavaScript 函数来隐藏单击按钮时的链接及其在该函数中的工作 function toggle() { var ele = document.getElement
我正在使用我在 JS fiddle 上找到的这个脚本:http://jsfiddle.net/Q4PUw/2/ 当我点击切换链接时,它会切换框并显示它,但是,它会跳回页面顶部,然后我必须再次向下滚动才
我正在 GoDaddy 上的共享服务器 IP 上构建 Web 应用程序。该应用程序与验证请求服务器 IP 的房地产 API 进行对话。问题是在 GoDaddy 上,我们的 IP 被列为 X,但它实际上
我在 jquery 中有一个简单的脚本,可以在 时切换 div(显示和隐藏)。被点击(我正在使用 Bootstrap )。 HTML: Advanced search This is t
我有两个 NSWindows,其中都有一个 NSPanel。我想在按下按钮时切换窗口。如何才能做到这一点?我不再需要旧窗口,所以我只想显示新窗口。 最佳答案 要聚焦第二个窗口,只需调用: [windo
我尝试在单击切换时将选项添加到选择菜单,但如果再次单击(取消选择),则可以将其删除。到目前为止,我可以在单击时向选择菜单添加单个值,但无法将其删除(切换添加切换删除) 这是我的代码: HTML
我正在尝试隐藏所属行。例如,如果您单击“子标题 1”,则将仅隐藏项目 1、项目 2 和项目 3 行。 示例: title Sub Title 1
似乎无法让它为我工作,任何人都可以为我提供帮助吗? http://codepen.io/anon/pen/kABjC 这应该根据点击打开和关闭文本部分,它采用 ID #,它只是一个数字(1,2,3,4
我正在从一个文件复制到另一个文件,并且我可以看到 Excel 在源文件和目标文件之间切换(如闪烁)。我希望宏从源复制并粘贴到目标,而不在文件之间切换(我不想闪烁)。 这里我得到了我的 Excel VB
我正在尝试制作一个带切换功能的 Accordion ,现在看起来效果很好。作为 javascript 的新手,我希望得到一些帮助,那就是它的组合方式。 http://jsfiddle.net/z3wW
我正在尝试制作一个小脚本,其中屏幕将每 100 毫秒随机更改一次背景颜色,您可以通过按一个按钮来打开和关闭它。我可以让它开始,但我不能让它停止。 这是切换的主要代码: var on = -1; fun
我确信这里应该已经涵盖了这一点,但我一直无法找到专门涉及此问题的问题。 我在一个页面中有 2 个 div,就像这样...... ...content... ...content...
我是一名优秀的程序员,十分优秀!