글
백준 별 찍기 - 1(JAVA, C#)
백준 프로그래밍
2023. 2. 14. 17:40
728x90
SMALL
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
for(int i=1; i<=a; i++)
{
System.out.println("*".repeat(i));
}
}
}
///////////////////
C#
using System;
public class Example
{
public static void Main()
{
String[] s;
Console.Clear();
s = Console.ReadLine().Split(' ');
int n = Int32.Parse(s[0]);
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= i; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
728x90
'백준 프로그래밍' 카테고리의 다른 글
백준 10952번 A+B - 5(JAVA, C#) while문 (0) | 2023.02.15 |
---|---|
백준 2439번 별 찍기 - 2(JAVA, C#) (0) | 2023.02.15 |
백준 11022번 A + B - 8(JAVA, C#) (0) | 2023.02.14 |
백준 11021번 A+B-7(JAVA, C#) (0) | 2023.02.14 |
백준 15552번 빠른 A+B(Java, C#) (0) | 2023.02.14 |