求比较两个字符串的大小的程序,例如"welcom to China!"和“welcom to America!”

曾小妍
浏览 1240回答 3
3回答

yanrun

使用compareTo或者compareToIgnoreCase方法

望远

#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"); } }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java