C + + brush problem--2568: Reverse string output

Source: Internet
Author: User
2568: String output in reverse order//Copyright (c) 2014, Yantai University School of Computer * All rights reserved. * File name: Test.cpp * Chen Dani * Completion date: May 26, 2015 * version number: v1.0 */description write a function that makes the input string output in reverse order. Input enter a string of strings, noting that there are no spaces in the string. Output outputs the inverse of the string. Sample inputabcdefgsample outputgfedcba#include<iostream> #include <cstring>using namespace Std;int main ( ) {    char str[100];    cin>>str;    int Len;    Len=strlen (str);    int fuction (char *, int);    Fuction (Str,len);    return 0;} int fuction (char str[100], int len) {    int i;    for (i=len-1;i>=0;i--)    {        cout<<str[i];    }    return 0;}


Learning experience: Multi-practiced hand is good, so continue to brush!!! Keep trying!

C + + brush problem--2568: Reverse string output

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.