首页 > 代码库 > CodeForces - 816A Karen and Morning 解题
CodeForces - 816A Karen and Morning 解题
这个题比较水~~~
1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int a=0,b,i,j; 6 char str1[6],str2[6]; 7 scanf("%s",&str1); 8 for(i=0;;i++) 9 { 10 for(j=0;j<5;j++) 11 { 12 str2[j]=str1[4-j]; 13 } 14 if(strcmp(str1,str2)==0) 15 { 16 printf("%d",a); 17 return 0; 18 } 19 str1[4]+=1; 20 a++; 21 if(str1[4]==‘9‘+1) 22 { 23 str1[4]=‘0‘; 24 str1[3]+=1; 25 } 26 if(str1[3]==‘6‘) 27 { 28 str1[3]=‘0‘; 29 str1[1]+=1; 30 } 31 if(str1[1]==‘9‘+1) 32 { 33 str1[1]=‘0‘; 34 str1[0]+=1; 35 } 36 if(str1[0]==‘2‘&&str1[1]==‘4‘) 37 { 38 str1[0]=‘0‘; 39 str1[1]=‘0‘; 40 str1[3]=‘0‘; 41 str1[4]=‘0‘; 42 } 43 } 44 }
CodeForces - 816A Karen and Morning 解题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。