帮我写一个判断字符串大小的代码
时间: 2023-04-02 15:02:47 浏览: 130
Python判断字符串与大小写转换
5星 · 资源好评率100%
好的,以下是一个简单的判断字符串大小的代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[100], str2[100];
int result;
printf("请输入第一个字符串:");
scanf("%s", str1);
printf("请输入第二个字符串:");
scanf("%s", str2);
result = strcmp(str1, str2);
if (result > ) {
printf("第一个字符串大于第二个字符串\n");
} else if (result < ) {
printf("第一个字符串小于第二个字符串\n");
} else {
printf("两个字符串相等\n");
}
return ;
}
```
希望能对您有所帮助。
阅读全文