标签:
#include<iostream> #include<cstring> #include<cstdio> #include<cmath> using namespace std; char s[1100]; int main() { while(gets(s)) { int i,j,k,l = strlen(s); for(i = 0;i<l;i++) { if(!(s[i]&(1<<5))) s[i]|=(1<<5); } puts(s); } return 0; }
标签:
原文地址:http://www.cnblogs.com/wos1239/p/4581699.html