HDU 2719 The Seven Percent Solution (水题。。。)

题意:把字符串中的一些特殊符号用给定的字符串代替。

析:没的说。

代码如下:

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <cstring>
#include <map> using namespace std;
const int maxn = 100;
char s[maxn]; int main(){
while(gets(s) && s[0] != '#'){
int n = strlen(s);
for(int i = 0; i < n; ++i){
if(' ' == s[i]) printf("%%20");
else if('!' == s[i]) printf("%%21");
else if('$' == s[i]) printf("%%24");
else if('%' == s[i]) printf("%%25");
else if('(' == s[i]) printf("%%28");
else if(')' == s[i]) printf("%%29");
else if('*' == s[i]) printf("%%2a");
else printf("%c", s[i]);
}
printf("\n");
}
return 0;
}
上一篇:python制作简单excel统计报表3之将mysql数据库中的数据导入excel模板并生成统计图


下一篇:python与excel的关系;铁打的python流水的excel