long get_long()
{
long input;
int ch;
while(scanf("%ld", &input) != 1)
{
printf("%ld", input);
while((ch = getchar()) != '\n')
putchar(ch);
printf(" is not an integer . Please enter an integer value \n");
}
return input;
}
相关文章
- 08-28C语言判断文件指针是否结尾的问题
- 08-28c – 什么是iota_n的良好实现(来自STL的遗漏算法)
- 08-28c++中的迭代器 iterator
- 08-28C语言的输入
- 08-28C语言:二十三 不用库函数/局部or全局变量写测字符串长度的函数
- 08-28如何从C模板中的方法类型推导出类类型?
- 08-28小白的秃头之路
- 08-28vue + axios + formdata 上传文件带参数的爬坑之路
- 08-28c语言字符串的结束标志
- 08-282021-02-17:规定1和A对应、2和B对应、3和C对应...26和Z对应,那么一个数字字符串比如“111”就可以转化为:“AAA“、“KA“和“AK“。给定一个只有数字字符组成的字符串str,请