猿问
求比较两个字符串的大小的程序,例如"welcom to China!"和“welcom to America!”
曾小妍
浏览 1245
回答 3
3回答
yanrun
使用compareTo或者compareToIgnoreCase方法
1
0
0
望远
#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"); } }
2
0
4
随时随地看视频
慕课网APP
相关分类
Java
我要回答