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

华为初级——图片整理

时间:2014-06-26 12:08:41      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:字符串   c++   

bubuko.com,布布扣

源程序:

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

//const int max=1024;

int main()
{
	char s[1024];
	char temp;
	gets(s);
	int len;
	len=strlen(s);
	for(int i=0;i<len;i++)
	{
		for(int j=i+1;j<len;j++)
		{
			if(s[i]>s[j])
			{
				temp=s[i];s[i]=s[j];s[j]=temp;
			}			
		}
	}
	puts(s);
	return 0;
}

运行结果:

bubuko.com,布布扣

总结:很容易~初级题~

华为初级——图片整理,布布扣,bubuko.com

华为初级——图片整理

标签:字符串   c++   

原文地址:http://blog.csdn.net/xmh1954/article/details/34805943

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