3 回答
望远
TA贡献1017条经验 获得超1032个赞
#include <stdio.h> #include<string.h> void main() { char str1[]="welcom to China!"; char str2[]="welcom to America!"; switch(strcmp(str1,str2)) { case 1:printf("1>2\n");break; case -1:printf("1<2\n");break; default:printf("1=2\n"); } }
添加回答
举报
0/150
提交
取消