关于字符串比较时使用getchar()函数
本帖最后由 129784626 于 2020-2-18 13:22 编辑使用getchar函数从键盘获取字符并赋值给数组时会自动添加结束符'\0'吗?
while ((str1 = getchar()) != '\n');
str1 = '\0';//该句需要吗?
代码如下:
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include <time.h>
#include<string.h>
{
char str1;
char str2;
int i = 0;
int s=0;
printf("请输入字符串str1\n");
while ((str1 = getchar()) != '\n');
str1 = '\0';
i = 0;
printf("请输入字符串str1\n");
while ((str2 = getchar()) != '\n');
str2 = '\0';//需不需要手动添加结束符?如果注释掉该句最后输出str2时会出现乱码
i = 0;
while ((str1 != '\0') || (str2 != '\0'))
{
if (str1-str2)
{
s = str1 - str2;
break;
}
i++;
}
printf("a与b值相差%d", s);
printf("%d\n", strlen(str1));//此处如果键盘输入一个字符,该处会输出3,
printf("%d\n", strlen(str2));
system("pause");
return 0;
}
谢谢大佬了!!!! https://fishc.com.cn/forum.php?mod=viewthread&tid=52272&extra=page%3D1%26filter%3Dtypeid%26typeid%3D441
你测试下不就知道,不加你看多严重{:10_249:}
页:
[1]