0

How could I inprove this code?

this is the code:: https://code.sololearn.com/calBY5rHo4HR/#cs

11th Mar 2020, 4:41 PM
Michael
1 Odpowiedź
0
//Your program is equal to this program. using System namespace ConsoleApp8 { class Program { static void Main() { string input = Console.ReadLine(); if(input !="") { if (input.Contains(" ")) string output = input.Replace(" ",""); Console.WriteLine(input); } } } }
11th Mar 2020, 5:13 PM
Jayakrishna 🇮🇳