1159: 零起点学算法66——反话连篇

Posted 只想要一个大Offer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1159: 零起点学算法66——反话连篇相关的知识,希望对你有一定的参考价值。

1159: 零起点学算法66——反话连篇

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 1470  Accepted: 626
[Submit][Status][Web Board]

Description

把输入的字符按照反着顺序输出

 

Input

多组测试数据 
每组一行(每组数据不超过200个字符)

 

Output

按照输入的顺序反着输出各个字符

 

Sample Input 技术分享

 
I am a boy.

 

Sample Output

.yob a ma I

 

Source

 
 1 #include<stdio.h>
 2 #include<string.h>
 3 int main(){
 4     char ch[200];
 5     while(gets(ch)!=NULL){
 6         int n;
 7         n=strlen(ch);
 8         for(int i=n-1;i>=0;i--){
 9             printf("%c",ch[i]);
10         }
11         printf("\n");
12     }
13     return 0;
14 } 

//对字符串的处理,很重要!!




以上是关于1159: 零起点学算法66——反话连篇的主要内容,如果未能解决你的问题,请参考以下文章

零起点学算法101——统计字母数字等个数

零起点学算法101——手机短号

1147: 零起点学算法54——Fibonacc

1108: 零起点学算法15——交换变量

1166: 零起点学算法73——统计元音

1130: 零起点学算法37——求阶乘