๋ฐ์ํ
import java.util.Scanner;
// 25314 ์ฝ๋ฉ์ ์ฒด์ก๊ณผ๋ชฉ ์
๋๋ค
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
sc.close();
for (int i = 0; i < num/4; i++) {
System.out.print("long ");
}
System.out.print("int");
}
}
๋ฐ์ํ
'๐ธ Algorithm > ๐ธ ๋ฐฑ์ค BaekJoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค][java][11021][A+B - 7] (0) | 2023.10.08 |
---|---|
[๋ฐฑ์ค][java][15552][๋น ๋ฅธ A+B] (1) | 2023.10.08 |
[๋ฐฑ์ค][java][25304][์์์ฆ] (0) | 2023.10.03 |
[๋ฐฑ์ค][java][8393][ํฉ] (0) | 2023.10.03 |
[๋ฐฑ์ค][java][10950][A+B - 3] (0) | 2023.10.01 |