Openjudge 1.7 字符串
1.7.9 字母后移 读入一行的代码: while((k=getchar())!=EOF) ASCII码 小写 \(a\) 97 小写 \(z\) 122 大写 \(A\) 65 大写 \(Z\) 90 数字0 \(48\) 数字9 \(57\) //1.7.9 #include<bits/stdc++.h> using namespace std; int main() { char p[85]; char k; int i=0; while((k=getchar())!=EOF){ if(k>=65&&k<=89) k++; else if(k==90) k=65; else if(k>=97&&k<=121) k++; else if(k==122) k=97; //else if(k==32) putchar('32'); p[i]=k; i++; putchar(k); } //puts(p); return 0; } 1.7.11 潜伏者 //1.7.11? #include <algorithm> #include <iostream> #include <cmath> #include <cstdio> #include <cstring> using namespace std; #define N 1020 char s1[N],s2[N],s3[N]; int