- /*
- 1.功能:输入一个8位字符串然后再输出到屏幕上;
- 2:如果输入的不是8位则提醒输入8位字符串。
- */
- #include<stdio.h>
- int main()
- {
- char a[9];//定义一个9位字符型数组最后一个是放'\0'
-
- int count=0;//定义count记录输入字符串的字符个数
- do
- {
- printf("请输入一个8位字符串:\n");//提示用户输入
- scanf("%s",a); //接收用户输入
- while(a[count]!='\0') //判断数组元素个数
- {
- count++;
- }
- }
- while(count!=8);
- printf("您输入的是:%s\n",a); //输出字符串
- return 0;
- }
复制代码 |