码迷,mamicode.com
首页 > 编程语言 > 详细

OJ刷题---ASCII码排序

时间:2015-06-03 23:33:52      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:ascii   博客   c++   

  题目要求:

技术分享

输入代码:

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    char str[3],temp;
    int i,j;
    while(gets(str))
    {
        for(i=0; i<3; i++)
            for(j=0; j<3; j++)
                if(str[j]>str[j+1])//字符串依然可以像数字一样排序
                {
                    temp=str[j];
                    str[j]=str[j+1];
                    str[j+1]=temp;
                }
        cout<<str[0]<<" "<<str[1]<<" "<<str[2]<<endl;
    }
    return 0;
}

运行结果:

技术分享


OJ刷题---ASCII码排序

标签:ascii   博客   c++   

原文地址:http://blog.csdn.net/linhaiyun_ytdx/article/details/46352411

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