hdu 1062 Text Reverse

简介:

直接读取字符串,然后倒序输出

要注意的就是中间的空白字符必须全部输出,不然会PE。

 

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <cstdio>
#include <cstring>
char s[1001],t;
main()
{
    scanf("%*d");
    while(~scanf("%s",s))
    {
        for(int i=strlen(s)-1;i>=0;)putchar(s[i--]);
        while((t=getchar())==' '||t=='\n')putchar(t);
        ungetc(t,stdin);
    }
}


 

目录
相关文章
LeetCode 150. Evaluate Reverse Polish Notation
根据逆波兰表示法,求表达式的值。 有效的运算符包括 +, -, *, / 。每个运算对象可以是整数,也可以是另一个逆波兰表达式。
60 0
LeetCode 150. Evaluate Reverse Polish Notation
HDU-1062,Text Reverse(字符串处理 and 栈)
HDU-1062,Text Reverse(字符串处理 and 栈)
HDOJ/HDU 1062 Text Reverse(字符串翻转~)
HDOJ/HDU 1062 Text Reverse(字符串翻转~)
122 0
HDOJ/HDU 1321 Reverse Text(倒序输出~)
HDOJ/HDU 1321 Reverse Text(倒序输出~)
105 0
[LeetCode]--405. Convert a Number to Hexadecimal
Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s complement method is used. Note: All letters in hexadecimal (a-f) must be in lowercase. The
966 0