首页 > 代码库 > 华为初级——图片整理

华为初级——图片整理

源程序:

#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;
}

运行结果:


总结:很容易~初级题~