can anyone help me with this, please?
I have an input string
Console.WriteLine("Enter some numbers");
string numbers = Console.ReadLine();
And let's say the input will be "3145". How can I ascending sort them (with loops if possible) and the output be "1345"?
I'm a very beginner...