HDUOJ 2560 The Seven Percent Solution
Posted daishuss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDUOJ 2560 The Seven Percent Solution相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<stdlib.h> using namespace std; int main() { //第一个循环用于输入,遇到#停止 while (1) { //第二个循环用于单次输入的每个字符的判断 while (1) { char c; c = getchar(); //若遇到换行符,则结束此次输入 if (c == ‘ ‘ || c == EOF) { cout << endl; break; } //遇到#停止 if (c == ‘#‘) return 0; //遇到如下替代 if (c == ‘ ‘) cout << "%20"; else if (c == ‘!‘) cout << "x%21"; else if (c == ‘$‘) cout << "%24"; else if (c == ‘%‘) cout << "%25"; else if (c == ‘(‘) cout << "%28"; else if (c == ‘)‘) cout << "%29"; else if (c == ‘*‘) cout << "%2a"; //否则直接输出 else putchar(c); } } }
以上是关于HDUOJ 2560 The Seven Percent Solution的主要内容,如果未能解决你的问题,请参考以下文章
hduoj 1004 Let the Balloon Rise [链表解法]
hduoj 1004 Let the Balloon Rise [链表解法]
HDUOj Ignatius and the Princess III 题目1002
zoj 2932 The Seven Percent Solution