- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一些有关如何在此示例中使用 isdigit()
的帮助:
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
int main()
{
int usr_option;
do
{
printf("\t\t\t************************MENU***********************\n");
printf("\t\t\t*** 1. Enter Code\t\t\t\t***\n");
printf("\t\t\t*** 2. Encrypt code and verify if correct\t***\n");
printf("\t\t\t*** 3. Decrypt code\t\t\t\t***\n");
printf("\t\t\t*** 4. Display number of times code was enter\t***\n");
printf("\t\t\t***\t\t(i) Successfully\t\t***\n");
printf("\t\t\t***\t\t(i) Unsuccessfully\t\t***\n");
printf("\t\t\t*** 5. Exit Program\t\t\t\t***\n");
printf("\t\t\t***************************************************\n");
printf("\nPlease enter your option from the menu: ");
scanf("%d", &usr_option);
if (isdigit(usr_option))
{
//Inside here is my switch case e.g switch(usr_option){/*code*/}
}
else
{
printf("Need to enter a digit\n");
}
}//end do while
while(usr_option != 5);
return 0;
}
如何实现此代码以免进入无限循环?我尝试过不同的方法,但似乎不起作用。我使用编译器 CodeBlocks 和 Sublime Text 3。
最佳答案
如果您通过scanf("%d", &usr_option);
读取了号码那么你不需要使用is_digit()
您可以使用 if
或switch
例如
switch(usr_option)
{
case 1: enter_code(); break;
case 2: encrypt(); break;
您只需要is_digit
如果您要检查字符串中的字符是否为数字。
即'1' != 1
关于c - 在 C 编程中使用 isdigit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42543740/
Kepp 在使用 Character.isDigit() 时遇到错误 我在其他地方查找过它并在那里进行了良好的测试,但我在这里不断遇到此错误。 Scanner scnr = new Scanner
我想创建一个算法来检查用户是否输入了有效的电话号码(仅限数字)。该程序应不断提示用户输入电话号码,直到它是严格的数字。我想出了以下内容。 程序限制:必须使用 malloc(realloc 可以),ph
我正在尝试验证 1 或 2 的输入。但是,使用此代码,如果您输入字母,则会导致程序崩溃。 如何解决这个问题? System.out.print("Choice: "); userSelection
这个问题已经有答案了: Check if input is float else stop (6 个回答) 已关闭 8 年前。 所以,我正在创建一个计算三角形面积的程序,我需要它来告诉用户他是否输入了
当我尝试使用带有汉字的isdigit() 函数时,它在 Debug模式下的Visual Studio 2013 中报告断言,但在 Release模式下没有问题。 我想如果这个函数是判断参数是否为数字,
我正在创建一个将十进制值转换为二进制值的程序。我遇到的问题是,在我的 if 语句中,我正在检查我的 int decimal 变量的用户输入是否包含数字,然后再继续转换值,但是当它是数字时,它将它们视为
当我输入一个数字并用 isdigit 测试时,它总是返回 false,为什么? #include using namespace std; int main() { int num;
这个问题在这里已经有了答案: how to check if given c++ string or char* contains only digits? (8 个答案) 关闭 6 年前。 我想检
#include #include #include void main() { clrscr(); int a; cout>a; if(isdigit(a))
我需要使用 NLTK 模块进行一些文字处理,但出现此错误:AttributeError: 'tuple' 对象没有属性 'isdigit' 有人知道如何处理这个错误吗? Traceback (most
我总是通过使用 isdigit() 函数将任何长度为 2 的数字字符串检测为非数字,这是代码: void testdigi(){ char* tt="22"; char* tt2= "
为什么 isdigit 没有按预期工作。我正在尝试检查输入是否为数字。如果输入是数字,则打印 True 否则打印 False。 #include #include int main() { i
我有一个函数接受用户输入的整数。 所以我有: scanf("%d, &x); 然后,函数: test(int x); 在 test() 中,我想检查输入的是数字还是字符,所以我尝试了: if (isd
我正在尝试检查第三个命令行是否为数字,所以我做了 int n; if (!isdigit(argv[3])) { fprintf(stderr, "n MUST be a nu
当我尝试在命令行上将数字传递到我的应用程序时,以下代码出现奇怪的段错误。 int offset = 3; int main(int argc, char *argv[]) { // Check
我正在做一些 IO,其中一行是 number number,但是当我使用时, if(isdigit(buffer) > 0) { ... } 它失败了,我相信这是因为每个数字之间有一个空格。有没有办法
这是我的代码: #include #include int main(void) { int limit; float sum=0; while(1){ p
先看我的代码: #include #include using namespace std; int main() { int a,b; cout > a >> b;
你好,我想检查我的程序,如果用户输入的不是数字,而不是输入数字。 所以我做了这个功能 void ValidationController::cinError(int *variable){ i
我正在尝试通过遍历整个字符串并输出整数来测试字符串是否包含整数。我的方法涉及将字符串转换为 c 字符串,atoi c 字符串,然后使用 isdigit 函数测试它是否为整数。由于某些未知原因,isdi
我是一名优秀的程序员,十分优秀!