Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
6
//Rextester.Program.Main is the entry point for your code. Don't change it. //Microsoft (R) Visual C# Compiler version 2.9.0.63208 (958f2354) using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int [] mass= new int []{87,72,28,45,59,36}; for (int i=1; i<mass.Length; i++ ) { if (mass[i-1]>mass[i]) {int buf = mass[i-1]; mass[i-1]=mass[i]; mass[i]=buf; for (int j=i-1; j>0; j-- ) { if(mass[j]<mass[j-1]) { int bufVnut = mass[j-1]; mass[j-1]=mass[j]; mass[j]=bufVnut; } } }for(int ir=0; ir<mass.Length; ir++) Console.WriteLine("m["+ir+"]="+mass[ir]); } for(int i=0; i<mass.Length; i++) Console.WriteLine("m["+i+"]="+mass[i]); } } }
run
|
edit
|
history
|
help
0
Rand things kurs 8 network
Linked list problem with remove
CodeAdvent
SQL import
C# managing ISO 8601 dates and times
merge 2 sorted array
Try-Catch-TaskRun
-Wall -std=c++14 -O0 -o a.out source_file.cpp
Binary Search Tree
.heap sort