题解 | #线段图案#

线段图案

https://www.nowcoder.com/practice/a95744270f274a14a8a0dafe10421589

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNextInt()){
            int n = sc.nextInt();
            for (int i = 1;i<=n;i++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务