글
백준 25314번 코딩은 체육과목 입니다 C#(JAVA)
백준 프로그래밍
2023. 2. 28. 00:57
728x90
SMALL
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a;
a = sc.nextInt();
for(int i = 0;i<a/4;i++)
{
System.out.print("long ");
}
System.out.print("int");
}
}
///////////////
C#
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
string s = Console.ReadLine();
int a = int.Parse(s);
for(int i = 0;i<a/4;i++)
{
Console.Write("long ");
}
Console.Write("int");
}
}
}
728x90
'백준 프로그래밍' 카테고리의 다른 글
백준 10813번 공 바꾸기 C#(JAVA) (0) | 2023.03.02 |
---|---|
백준 10810번 공 넣기 C#(JAVA) (0) | 2023.02.28 |
백준 11382번 꼬마 정민 C#(JAVA) (0) | 2023.02.28 |
백준 11720번 숫자의 합(JAVA, C#) (0) | 2023.02.20 |
백준 11654번 아스키코드 ASCII(JAVA, C#) (0) | 2023.02.20 |