1189:HH Characters in reverse order

Source: Internet
Author: User
Tags time limit
1189:hh character reversal time limit: 1 Sec memory limit: up to MB
Submissions: 8 Resolution: 6
Submitted State [Discussion Version] Title Description

HH began to learn C language, the teacher assigned a homework problem,

Reverses the contents of a string str and outputs it. STR has a length of not more than 100 characters. input

Input has multiple lines, the first line includes a number T,

Next T line, each line of input includes a string. The output output converts a good inverse string. Example input 2I am a studenthpu sample output

Tneduts a MA Iuph

#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
int main ()
{
	int A;
	Char map[10000];
	scanf ("%d", &a);
	GetChar ();
	while (a--)
	{
		gets (map);
		for (int i=strlen (map) -1;i>=0;i--)
		{
			printf ("%c", Map[i]);
		}
		printf ("\ n");
	}
	return 0;
}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.