scanf问题

来源:互联网 发布:安卓mac地址修改软件 编辑:程序博客网 时间:2024/06/01 18:22
#include<stdio.h>int main(){int i,a[6]={3,2,4,9,23,10},b[6]={2,8,5,8,21,30},A[6]={1,10,2,3,32,40,},B[6]={7,7,9,4,44,32},C[6]={5,6,3,5,67,68},D[6]={0,1,1,17,87,90};char s[7]="CABDBA",t[7];for(i=0;i<=5;i++){printf("第%d题:%d+%d=(  )\n",i+1,a[i],b[i]);printf("A.%d\tB.%d\nC.%d\tD.%d\n",A[i],B[i],C[i],D[i]);printf("Please input you answer : ");scanf(" %c",&t[i]);if(t[i]==s[i]){    printf("you are right\n");}else{    printf("you are wrong\n");}//getchar();这种解决办法也可以printf("\n");}return 0;}

初涉c语言,刚开始学习遇到一个奇怪的问题程序代码如下:

#include<stdio.h>int main(void){char name[5];scanf("%s", name);printf("your name:%s\n", name);}

我定义的char数组长度是5,但是我输入hellohellohello 程序都没有报错为什么呢 我只定义5个长度的字符数组啊,再输入hellohellohellohellohello 就报错 错误(core dumped)
这是什么情况啊?

原因是:
如果定了char [4]; 系统只会分配5个字节空间的,一个结束符’\0’;

scanf输出超出长度,会在标准输入缓冲区中,当你刷新了缓冲区的话,就会出问题的,结果是不可欲知的!

为了预防这种情况的发生,

#include<stdio.h>int main(void){char name[5];scanf("%4s", name);printf("your name:%s\n", name);}

一样可以输入很多字符,但是只往name内放入4个字符。

#include<stdio.h>#include<stdlib.h>int main(){int a,b;char c1,c2;scanf("%d,%d",&a,&b); //输入的格式应该为1,2printf("%d,%d\n",a,b);//不要管这个输出,无所谓getchar();//如果没有这个,那么a为换行符了...scanf("%c%c",&c1,&c2);//你在两个%d之间加了个逗号(,) 所以你输入的时候两个量也必须用逗号分割!!!printf("c1='%c',c2='%c'\n",c1,c2);system("pause");return 0;}
#include<stdio.h>int main(){    char a,b,c;    scanf("%c %c %c",&a,&b,&c);    printf("%c%c%c\n",a,b,c);    return 0;}

看到了输入格式的正确性了吧!

0 0
原创粉丝点击