码迷,mamicode.com
首页 > 其他好文 > 详细

50.编写程序,逆转字符串

时间:2014-08-09 18:12:18      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   

?//1、运用到strlen函数取得输入字符串的长度
//2、输出时注意数组下标

#include<iostream>
#include<string.h>
using namespace std;

int main()
{
    int temp;
    char a[20];
    cout<<"please input a string:"<<endl;
    cin>>a;

    temp=strlen(a);
    for(;temp>0;temp--)
    {
        cout<<a[temp-1];
    }
    return 0;
}

 

50.编写程序,逆转字符串,布布扣,bubuko.com

50.编写程序,逆转字符串

标签:style   blog   color   os   io   for   ar   div   

原文地址:http://www.cnblogs.com/jixiaowu/p/3901153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!