백준 2438번 문제
Console(콘솔)/알고리즘 2019. 9. 30. 17:15
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Syntax15 { class Program { static void Main(string[] args) { int input = int.Parse(Console.ReadLine()); for(int i = 1; i <=input; i++) { for(int j = 0; j<i; j++) { Console.Write("*"); } Console.WriteLine(); } } } }
|