Ordering number
#1

Who I Ordering number Z-A ??
Sorry on my english
Reply
#2

I dont even undrestand what is your problem, pls go to school ors.
Reply
#3

Quote:
Originally Posted by CodeStyle175
Посмотреть сообщение
I dont even undrestand what is your problem, pls go to school ors.
You can to say me how I do it this or not ? I not programmer long time
Reply
#4

WTF, pls use ****** translate, becuase idont understand, what is your problem
Reply
#5

Quote:
Originally Posted by CodeStyle175
Посмотреть сообщение
WTF, pls use ****** translate, becuase idont understand, what is your problem
How do I fix a numbers Z-A
http://pastebin.com/xCuJ9jaT
This the array pls fix a numbers Z- A
Reply
#6

You mean sort? If yes then do like this:
PHP код:
new Arr[15];
for(new 
i15i++)Arr[i] = random(100);

//Bubble sorting technique:
for(new i15i++)
{

    
// here loop till 1 less than size of array:
    
for(new 015-1j++)
    {
        if(
Arr[j] < Arr[j+1])
        {
            
//swapping
            
new temp Arr[j];
            
Arr[j] = Arr[j+1];
            
Arr[j+1] = temp;
        }
    }
}
//now all elements are sorted in descending order 
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)