编写一个程序,将两个字符串s1和s2比较
时间: 2023-04-18 17:00:43 浏览: 243
字符串比较程序
可以使用strcmp函数来比较两个字符串s1和s2。该函数会返回一个整数值,如果s1和s2相等,则返回;如果s1小于s2,则返回一个负数;如果s1大于s2,则返回一个正数。以下是一个示例程序:
#include <stdio.h>
#include <string.h>
int main()
{
char s1[100], s2[100];
printf("请输入字符串s1:");
scanf("%s", s1);
printf("请输入字符串s2:");
scanf("%s", s2);
int result = strcmp(s1, s2);
if (result == )
{
printf("s1和s2相等\n");
}
else if (result < )
{
printf("s1小于s2\n");
}
else
{
printf("s1大于s2\n");
}
return ;
}
阅读全文