gpt4 book ai didi

c - 错误C2050开关表达式不完整

转载 作者:行者123 更新时间:2023-11-30 18:53:19 25 4
gpt4 key购买 nike

所以我正在努力处理以下特定代码段:

    scanf("%f", &x, &y);
scanf("%c", &operator);

switch (x)
{
case ('p') : x = lastNum;
break;

case ('q') : return(0);

default: break;


因此,Visual Studio抛出错误2050。现在,我明白了为什么会发生这种情况,因为在这种情况下,x是一个浮点数,并且我试图考虑非数字输入,但是有什么方法可以解决此问题而无需求助于某种形式的巫术?

编辑

这是我的代码的整体,仍然坏了,但是我认为我的代码片段是无用的。

#pragma warning(disable: 4996)
#include <stdio.h>

int main()
{
float x, y, lastNum;
char operator;

while (1)
{
scanf("%f %c %f", &x, &operator, &y);

switch (operator)
{
case('+') : lastNum = x + y;
printf("\nANS = ", "%f", x + y);
break;

case('-') : lastNum = x - y;
printf("\nANS = ", "%f", x - y);

break;

case('*') : lastNum = x * y;
printf("\nANS = ", "%f", x * y);

break;

case('/') : lastNum = x / y;
printf("\nANS = ", "%f", x / y);

break;

}


}



}

最佳答案

因此,根据您对另一个答案的评论,我想我了解您要完成的工作-用户可以选择输入浮点值或非数字值,例如'p'(使用以前的值),并且'q'(退出),您正在尝试弄清楚如何兼顾两者。

使用scanf( "%f", &x );将不起作用,因为它将不接受'p''q'作为有效输入。匹配失败将返回0,并且x不会更新。

相反,您将必须以文本形式读取输入,测试以查看第一个字符是'p''q'还是数字,然后从那里进行处理。假设我正确理解了您的意图,则需要执行以下操作:

#include <stdlib.h> // for strtod

char input[SIZE]; // where SIZE is large enough to account for your largest
// possible floating point input, plus an optional sign,
// plus a newline, plus the 0 terminator.

/**
* Read input as text
*/
if ( fgets( input, sizeof input, stdin ) )
{
/**
* Check for a newline character - if it isn't present, then the user
* typed in a longer input than we're capable of handling.
*/
char *newline = strchr( input, '\n' );
if ( !newline )
{
fprintf( stderr, "input too long, try again\n" );
return 0;
}

/**
* Remove the trailing newline
*/
*newline = 0;

/**
* Skip over any leading whitespace
*/
char *p = input;
while ( isspace( *p ) )
p++;

/**
* If the first non-whitespace is a digit or a sign, process as
* a numeric input
*/
if ( isdigit( *p ) || *p == '+' || *p == '-' )
{
/**
* Convert input to a floating point value, save to x
*/
char *chk;
x = (float) strtod( p, &chk ); // I'm assuming x is declared float

/**
* Make sure there wasn't any garbage at the end of the floating-point
* input.
*/
if ( !isspace( *chk ) && *chk != 0 )
{
fprintf( "%s is not a valid floating-point input\n", p );
return 0;
}
}
else if ( tolower(*p) == 'p' )
{
x = lastVal;
}
else if ( tolower(*p) == 'q' )
{
return 0;
}
else
{
fprintf( stderr, "Don't know what to do with %s\n", p );
return 0;
}
}
/**
* process x
*/


编辑

如果不允许您使用stdlib.h中的例程,那么您应该做的第一件事就是对您的老师打巴掌,以使其比实际需要的工作更加困难。

好吧,也许不会-这可能会影响您的成绩。

您可以使用 sscanf而不是 strtod进行转换,但是错误检查不太直接:

if ( isdigit( *p ) || *p == '+' || *p == '-' )
{
char chk;
int r = sscanf( p, "%f%c", &x, &chk );
if ( r < 1 || ( r == 2 && !isspace( chk ) && chk != 0 ) )
{
// bad input, handle like above
}
}


所有 *scanf函数都将返回成功的转换和分配的次数。在正常情况下,我们希望读取2个项目-浮点数和结尾的换行符。如果我们读取2项并且 chk不是换行符或0,那么在浮点数之后我们输入了错误的结尾。如果读取的项目少于一项,则可能是匹配失败(输入不是有效的浮点数),或者在读取过程中发生了错误。由于我们已经在进行更详细的介绍之前检查了一个前导数字,所以在这一点上我们不应该出现完全匹配失败的情况,但是为了完整性起见,我将其包括在内。

编辑的编辑

好吧,出于多种原因,您绝对不想只将所有内容粘贴到您的代码中。我主要是试图显示一种比较健壮的方法来检查您的输入(可以采用几种形式之一)。

摆脱所有这些的主要内容如下:


如果输入行的第一件事可以是文本或数字值,请先读取并存储为文本字符串。您可以使用 fgets()(它将读取所有内容直到换行符,或者直到您填满目标缓冲区为止,以先到者为准),或者使用 scanf( "%s", ... )(将读取直到下一个空格字符);
检查输入的第一个非空白字符-如果是符号或数字,则需要将该输入转换为浮点值。
阅读您的运算符和第二个浮点输入。


这是另一种不那么健壮的方法(它将替换上面更新的代码片段中的 scanf( "%f %c %f", &x, &operator, &y );):

char xstr[SIZE]; // large enough to hold a single floating-point value as
// text, plus sign, plus terminator

/**
* Read the first input up to the next whitespace character
*/
scanf( "%s", xstr );
if ( xstr[0] == 'p' )
{
x = lastVal;
}
else if ( xstr[0] == 'q' )
{
return 0;
}
else
{
/**
* Convert x to a float value
*/
sscanf( xstr, "%f", &x );

/**
* Read the remainder of the input
*/
scanf( " %c %f", &operator, &y );
}


然后打开运算符(假设您的输入可以采用 12.3 + 4.56p + 7.89的形式)。保证不使用 stdio.h中没有的任何内容。

我意识到使用 fgets会读取整个输入行,包括您的运算符和第二个操作数,因此我将上面的内容更改为仅读取第一个输入。

您应该检查 scanf(和 sscanf)的返回值,以确保在处理之前确实读了要读的内容。为了使代码更清晰,我将其遗漏在上面。

我想让您摆脱的一件事是,C语言中的交互式I / O实在令人难以忍受。

关于c - 错误C2050开关表达式不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33089202/

25 4 0
文章推荐: c# - 无法将默认比较器作为 IComparer