0

我有一个程序应该在 main() 中接受 4 个输入,然后使用函数转换并转换为大写。除了我需要程序只能接受 AD、F 和 ad、f 输入之外,我已经完成了所有工作。使用字符的while循环和ASCII值,到目前为止我有这个:

char c1, c2, c3, c4;
 printf ("Enter 4 letter grades to find statistics: ");
 scanf("%c %c %c %c", &c1, &c2, &c3, &c4);
 getchar();
 while ((c1 < 'A' || c1 > 'D' && c1 != 'F') && (c1 < 'a' || c1 > 'd' && c1 != 'f')) {
       printf ("\n ERROR: Choose ONLY A-D, or F! \n Enter 4 letter grades to find statistics: ");
       scanf("%c %c %c %c", &c1, &c2, &c3, &c4); }
 while ((c2 < 'A' || c2 > 'D' && c2 != 'F') && (c2 < 'a' || c2 > 'd' && c2 != 'f')) {
       printf ("\n ERROR: Choose ONLY A-D, or F! \n Enter 4 letter grades to find statistics: ");
       scanf("%c %c %c %c", &c1, &c2, &c3, &c4); }
 while ((c3 < 'A' || c3 > 'D' && c3 != 'F') && (c3 < 'a' || c3 > 'd' && c3 != 'f')) {
       printf ("\n ERROR: Choose ONLY A-D, or F! \n Enter 4 letter grades to find statistics: ");
       scanf("%c %c %c %c", &c1, &c2, &c3, &c4); }
 while ((c4 < 'A' || c4 > 'D' && c4 != 'F') && (c4 < 'a' || c4 > 'd' && c4 != 'f')) {
       printf ("\n ERROR: Choose ONLY A-D, or F! \n Enter 4 letter grades to find statistics: ");
       scanf("%c %c %c %c", &c1, &c2, &c3, &c4); }

据我了解,如果 c1 在 A 之前或 D 之后并且如果它不是 F,则 while 循环将运行。但是当我这样做时,只有小写输入有效。如果我尝试使用大写字母,它将显示输入错误。

我想我不明白运算符是如何工作的,也不明白如何实现它们来制作我自己的字符范围。

我试图寻找我的答案,但我找不到任何像我的问题一样的东西。

我很感激任何帮助。谢谢!

4

2 回答 2

1

这是一种便宜的方法来确定它是好是坏。有人可能会认为,由于您有 4 个字符要检查,因此该代码可能应该隐藏在某种函数中。

if (strchr("ABCDFabcdf", c) != NULL) 
printf ("0k\n") 
else printf("bad\n");
于 2013-05-16T23:44:35.230 回答
1

虽然我建议使用 EvilTeach 的答案中提到的更简单的方法,但您的代码似乎存在问题是优先级错误。

我相信您期望a || b && c与 相同(a || b) && c,但编译器将其视为a || (b && c). 要修复您当前的代码,请在每个c1 < 'A' || c1 > 'D'.

于 2013-05-16T23:51:08.837 回答