- 4
Как можно было бы сократить код?
using System; using System.Collections.Generic; namespace SoloLearn { class Program { static void Main(string[] args) { int number = Convert.ToInt32(Console.ReadLine()); number++; for (int x = 1; x < number; x++){ if (x%3 == 0) Console.WriteLine("*"); else Console.WriteLine(x); } } } }
1 Antwort
+ 3
Алексей Меркурьев
Use ternary operator (?:} like this:
Используйте тернарный оператор (?:} Следующим образом:
Console.Write(i % 3 == 0 ? "*" : i + "");
And delete your duplicate question
И удалите дублирующийся вопрос
https://www.sololearn.com/discuss/2857531/?ref=app
https://www.sololearn.com/discuss/2857533/?ref=app
https://www.sololearn.com/discuss/2857532/?ref=app