#include
void main()
{
x09int x,y,z;
x09int str[10];
x09int s,j=0;//用于冒泡法排序
x09int a,b,c,d,e,f,g,h,i;
x09int count,num=0,o=0;//用于计数
x09
x09x=122;
x09
L1:x++;x09
y=2*x;z=3*x;
a=x/100;b=(x/10)%10;c=x%10; //把三位数的每一位数字截下来,a,b,c分别为百,十,个位
d=y/100;e=(y/10)%10;f=y%10;
g=z/100;h=(z/10)%10;i=z%10;
str[0]=a;str[1]=b;str[2]=c;str[3]=d;str[4]=e;str[5]=f;str[6]=g;str[7]=h;str[8]=i;
count=9;
for(s=0;s