글
프로그래머스 C# 직각삼각형 출력하기(split, Console.Write, Console.WriteLine, P, J)
프로그래밍
2022. 12. 26. 13:11
728x90
SMALL
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();
}
}
}
파이썬
n = int(input())
for i in range(n):
print('*'*(i+1))
//////
n = int(input())
for i in range(1,n+1):
print('*'*i)
자바
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i=1; i<=n; i++)
{
System.out.println("*".repeat(i));
}
}
}
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i=0; i<n; i++)
{
for(int j=0; j<=i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 피자 나눠먹기1(Math.Celling(), 삼항연산자, P, J) (0) | 2022.12.26 |
---|---|
프로그래머스 C# 배열 원소의 길이(Length, 자바) (0) | 2022.12.26 |
프로그래머스 C# 과일장수(Array.Sort(), JAVA) (0) | 2022.12.26 |
Hello Coding 숫자 야구 C# (0) | 2022.12.25 |
Hello Coding 심화문제 4-2 (0) | 2022.12.25 |