글
백준 2675번 문자열 반복 C#(JAVA)
JAVA
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int m, n;
m = sc.nextInt();
for(int k = 0;k<m;k++)
{
n = sc.nextInt();
String str = sc.next();
for(int j = 0;j<str.length();j++)
{
for(int i = 0;i<n;i++)
{
System.out.print(str.charAt(j));
}
}
System.out.println();
}
}
}
////////////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
int a = int.Parse(s);
for(int i = 0;i<a;i++)
{
string ss = Console.ReadLine();
string[] spl = ss.Split();
int b = int.Parse(spl[0]);
string str = spl[1];
for(int j = 0;j<str.Length;j++)
{
for(int k = 0;k<b;k++)
{
Console.Write(str[j]);
}
}
Console.WriteLine();
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 10809번 알파벳 찾기 C#(JAVA) (0) | 2023.03.06 |
---|---|
백준 9086번 문자열 C#(JAVA) (0) | 2023.03.03 |
백준 2743번 단어 길이 재기 C#(JAVA) (0) | 2023.03.03 |
백준 10811번 바구니 뒤집기 C#(JAVA) (0) | 2023.03.02 |
백준 10813번 공 바꾸기 C#(JAVA) (0) | 2023.03.02 |