SZU1
Posted qlky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SZU1相关的知识,希望对你有一定的参考价值。
字符串进位。。
#include <iostream> #include <string> #include <cstring> #include <cstdlib> #include <cstdio> #include <cmath> #include <algorithm> #include <stack> #include <queue> #include <cctype> #include <vector> #include <iterator> #include <set> #include <map> #include <sstream> using namespace std; #define mem(a,b) memset(a,b,sizeof(a)) #define pf printf #define sf scanf #define spf sprintf #define pb push_back #define debug printf("!\n") #define INF 10000 #define MAXN 5010 #define MAX(a,b) a>b?a:b #define blank pf("\n") #define LL long long #define ALL(x) x.begin(),x.end() #define INS(x) inserter(x,x.begin()) #define pqueue priority_queue char s[105],t[105]; int main() { int i,j; while(sf("%s%s",s,t)==2) { int len = strlen(s); int x = len-1; for(i=0;i<len;i++) { if(s[x]==‘z‘) { s[x]=‘a‘; x--; } else { s[x]++; break; } } if(!strcmp(s,t)) pf("No such string\n"); else pf("%s\n",s); } }
以上是关于SZU1的主要内容,如果未能解决你的问题,请参考以下文章