C语言,不懂
6-2 判断数字字符 (10 分)
C语言标准函数库中包括 isdigit 函数,用于判断数字字符。作为练习,我们自己编写一个功能与之相同的函数。
函数原型
int IsDigit(char x);
说明:参数 x 是字符的 ASCII 码。若 x 是数字字符的 ASCII 码,则函数值为 1 (真),否则为 0 (假)。
裁判程序
#include <stdio.h> int IsDigit(char x); int main() { char c; c = getchar(); if (IsDigit(c)) { putchar('Y'); } else { putchar('N'); } putchar('\n'); return 0; } /* 你提交的代码将被嵌在这里 */
输入样例1
8
这是我写的代码路过的大佬能不能帮我看看错哪了😘😘😘😘😘
int IsDigit(char x)
{
if('x'>=48&&'x'<=57)
IsDigit==1;
else
IsDigit==0;
}
{
if('x'>=48&&'x'<=57)
IsDigit==1;
else
IsDigit==0;
}