#include <stdio.h>
#define SIZE 5
void func(int*);
int main(void)
{
int i, arr[SIZE];
for(i=0; i<SIZE; i++)
{
printf("Enter the element arr[%d]: ", i);
scanf("%d", &arr[i]);
}//End of for loop
func(arr);
printf("The modified array is : ");
for(i=0; i<SIZE; i++)
printf("%d ", arr[i]);
return 0;
}
void func(int a[])
{
int i;
for(i=0; i<SIZE; i++)
a[i] = a[i]*a[i];
}
输出:::
当我输入整数元素时,输出是OK。但是当我输入一个像1.5的浮点值时,它没有要求其他元素,而O / P如图所示。我认为它应该是隐式的类型1.5比1,但它没有发生..你能告诉为什么会发生这种情况吗?有关编译器的所有信息都显示在图中。
答案 0 :(得分:5)
当scanf("%d")
1.5
之类的值时,扫描将停在小数点并返回1.
你调用scanf
的 next 时间,指针仍然指向小数点,你的扫描将立即返回,因为那里没有数字扫描。
您应该检查scanf
的返回值 - 它会为您提供成功扫描的项目数,最初为小数点前1
为1,之后为0。< / p>
顺便说一句,scanf
代表“扫描格式化”,我保证您找不到比用户输入更多的更多格式
调查fgets
查看行输入。这是我经常用于此目的的函数的副本:
#include <stdio.h>
#include <string.h>
#define OK 0
#define NO_INPUT 1
#define TOO_LONG 2
static int getLine (char *prmpt, char *buff, size_t sz) {
int ch, extra;
// Get line with buffer overrun protection.
if (prmpt != NULL) {
printf ("%s", prmpt);
fflush (stdout);
}
if (fgets (buff, sz, stdin) == NULL)
return NO_INPUT;
// If it was too long, there'll be no newline. In that case, we flush
// to end of line so that excess doesn't affect the next call.
if (buff[strlen(buff)-1] != '\n') {
extra = 0;
while (((ch = getchar()) != '\n') && (ch != EOF))
extra = 1;
return (extra == 1) ? TOO_LONG : OK;
}
// Otherwise remove newline and give string back to caller.
buff[strlen(buff)-1] = '\0';
return OK;
}
// Test program for getLine().
int main (void) {
int rc;
char buff[10];
rc = getLine ("Enter string> ", buff, sizeof(buff));
if (rc == NO_INPUT) {
// Extra NL since my system doesn't output that on EOF.
printf ("\nNo input\n");
return 1;
}
if (rc == TOO_LONG) {
printf ("Input too long [%s]\n", buff);
return 1;
}
printf ("OK [%s]\n", buff);
return 0;
}
一旦你开始使用该功能,你可以sscanf
使用它的内容,更容易处理错误。
答案 1 :(得分:3)
发生的事情是scanf
在看到'.'
字符时停止读取整数,并将其留在输入缓冲区中。然后对scanf
的后续调用失败,因为下一个字符是'.'
而不是可解析为整数的东西。
你如何解决这个问题?第一步是忘记你曾经听说过scanf
并且始终使用fgets
来读取整行输入,然后在将它们读入字符串缓冲区后处理它们。您可以使用sscanf
来实现此目的,但像strtol
这样的强大功能会更好。
答案 2 :(得分:-2)
缓冲区问题 - 我认为其余部分(.5)仍在缓冲区中。
在flushall();
scanf("%d..