0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Java_半角スペース区切りでの出力 (paizaランク D 相当)

Posted at
C-#05
// 整数nが入力されたとき、n回、半角スペース区切りでpaizaと出力するプログラム
import java.util.*;
public class Main {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner sc = new Scanner(System.in);
        int line = sc.nextInt();
        
        for (int i = 0; i < line - 1; i++) {
            System.out.print("paiza");
            System.out.print(" ");
        }
        System.out.print("paiza");
    }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?