(算法练习)字符串比较

要求:
http://codeup.cn/problem.php?cid=100000569&pid=4

说明:用好break和continue很重要!

代码

#include 
#include 
int main(){
     
	char str1[100];
	char str2[100];
	gets(str1);
	gets(str2);
	int len = strlen(str1);
	for(int i = 0;i <len;i++){
     
		if(str1[i] == str2[i] && i != len - 1){
     
			continue;
		}
		else{
     
			printf("%d",str1[i] - str2[i]);
			break;
			
		}
		
	}
}

你可能感兴趣的:(算法练习—C/C++快速入门)