- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我正在为我的 C 程序使用 visual studio。
while 循环以提示和 scanf 开始,如果用户输入非数字响应,循环中的 switch/case 将变为默认值。这将打印错误并“继续”循环。
问题是,当循环继续到下一次迭代时,它会完全跳过“scanf”,然后无限循环遍历默认情况。我已经搜索了几个小时,但似乎找不到解决方案。
我的目标是跳过 switch/case 之后的代码,然后回到开头。任何帮助将不胜感激。
while (userInput != 'N' && userInput != 'n') {
printf("Enter input coefficients a, b and c: "); // prompt user input
scanf_s("%d %d %d", &a, &b, &c); // look for and store user input
/* ----- Break up the quadratic formula into parts -----*/
inSqRoot = (pow(b, 2) - (4.0 * a * c)); // b^2 - 4ac
absInSqRoot = abs((pow(b, 2) - (4.0 * a * c))); // absolute value of b^2 - 4ac
denom = 2.0 * a; // get denomiator 2.0 * a
negB = -1.0 * b; // take negative of b
/*------ Determine number of roots -------*/
if (!isdigit(a) || !isdigit(b) || !isdigit(c)) {
rootNum = 4;
} // end if
else if (a == 0 && b == 0 && c == 0) {
rootNum = 0;
} // end if
else if (inSqRoot == 0) {
rootNum = 1;
} // end if
else if (inSqRoot > 0) {
rootNum = 2;
} // end if
else if (inSqRoot < 0) {
rootNum = 3;
} // end if
/*------ Begin switch case for rootNum ------*/
switch (rootNum) {
case 0: // no roots
printf("The equation has no roots.\n");
break;
case 1: // one root
root1 = (-b + sqrt(inSqRoot)) / denom;
printf("The equation has one real root.\n");
printf("The root is: %.4g\n", root1);
break;
case 2: // two roots
root1 = (-b + sqrt(inSqRoot)) / denom;
root2 = (-b - sqrt(inSqRoot)) / denom;
printf("The equation has two real roots.\n");
printf("The roots are: %.4g and %.4g\n", root1, root2);
break;
case 3: // imaginary roots
printf("The equation has imaginary roots.\n");
printf("The roots are: %.1g + %.4gi and %.1g - %.4gi \n", negB / denom, sqrt(absInSqRoot) / denom, negB / denom, sqrt(absInSqRoot) / denom);
break;
default:
printf("ERROR: The given values are not valid for a quadratic equation.\n");
continue;
}
printf("Enter Y if you want to continue or N to stop the program: ");
scanf_s("%*c%c", &userInput);
printf("\n");
}
最佳答案
scanf 实际上并没有被跳过,它只是一遍又一遍地读取相同的错误输入。您可以使用 scanf 的返回值来查看读取了多少参数。在错误输入的情况下,它将小于 3。要清除错误输入,您可以调用这样的函数
void flushInput() {
int c;
while ((c = getchar()) != '\n' && c != EOF);
}
并在默认情况下添加对 flushInput 的调用
default:
printf("ERROR: The given values are not valid for a quadratic equation.\n");
flushInput();
continue;
关于c - 在 while 循环中使用 "continue",跳过 scanf ("%d",var),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39433247/
这个问题已经有答案了: Can I bind an array to an IN() condition in a PDO query? (23 个回答) 已关闭 5 年前。 任何人都可以看到我如何在
我阅读了关于此的 bash 手册页,但我不明白其中的区别。我对它们进行了测试,它们似乎产生了完全相同的结果。 如果值不是通过命令行参数设置的,我想设置一个变量的默认值。 #!/bin/bash var
我为我的网站开了一家商店,并让它运行起来,但我意识到它无法正确购买商品。换句话说,您不会走进一家商店,拿起一件商品,购买,再次购买,购买,再次购买,等等,以获得想要的数量。你一次捕获他们。我的网站缺少
基本上,我想知道为什么会这样(将列表的内存地址作为参数传递): void init_lista (elemPtr *list) { *list = NULL; } int main(){
看到这个问题:Is there a (built-in) way in JavaScript to check if a string is a valid number?还有这个:jsperf ,其
我有以下字符串: 我想用正则表达式替换所有后面有 px 的数字,并用 X 乘以它们的值。 (X 是一个变量)。 所以如果X=3,结果就是 请注意 X 必须是我将检索到函数的变量 最佳答案 以下代码
这个问题在这里已经有了答案: 关闭 13 年前。 同时 (var != var) System.out.println("循环.."); 执行它..如何声明..var
我只是好奇。我想知道表达式是否有特定原因 var &= expr 行为方式与不同 var = var && expr. 看起来第一个表达式中的表达式正在执行,而不管 var 上的 false 值。 我
我有这个 Ruby 代码: var1 = 10 puts var1.object_id var1 = var1 + 0 puts var1.object_id var1 = var1 + 1 puts
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: demote boost::function to a plain function pointer 所以我
好吧,堆栈溢出, 我花了几个小时来解决 javascript 中的问题(在 NodeJS 服务器中编写),但我真的不明白。 这就是发生的事情: var data = {x: 50}; var temp
首先,我在这里处理 1 和 0,我很清楚 1 == true 和 0 == false。但是我很好奇为什么这不起作用: $var = 1; echo $var; /* 1 */ $var = $var
标题说的是什么:将变量封装在 {}、"" 或 "{}"中是什么意思?我无法在网上找到关于此的任何解释 - 除了使用不会产生任何结果的符号外,我无法引用它们。 这是一个例子: declare -a gr
我需要将信息发送到我的 Html。例如 $(document).ready(function() { var = "'#"+result.tag+"'" // var = '#tag_dinamy
是否可能,如果可以,如何将以下表达式转换为一行? DEV=$(lsblk -no KNAME,MODEL | grep 'ModelNAME') DEV=${DEV%%'ModelNAME'} 简单的
isset($var) == "Test" 和 isset($var) && $var == 'Test" 有什么区别? 最佳答案 这里是一个简短的例子: $var = "Chuck Test"; v
isset($var) == "Test" 和 isset($var) && $var == 'Test" 有什么区别? 最佳答案 这里是一个简短的例子: $var = "Chuck Test"; v
如果我有一个字符串:[Object a:var b:var c:var]; 如何将 a:、b: 和 c: 与正则表达式匹配? 我试过:\[.+\s+(.+:).+\] 但它不适用于 a、b 和 c,它
这个问题在这里已经有了答案: Why does this if-statement combining assignment and an equality check return true? (
我正在 Powershell 中使用 SCSM,但遇到了 if 语句的问题。 我有一个函数,它根据作为变量传递给函数的条件收集数据。 例子: $JMLs1 = collectTickets -crit
我是一名优秀的程序员,十分优秀!