[Java] 藍橋杯ADV-210 演算法提高 2-1螢幕列印

柳婼發表於2018-10-10

樣例輸出
**********************
* My first C program *
**********************

package adv210;

public class Main {

    public static void main(String[] args) {
        System.out.println("**********************");
        System.out.println("* My first C program *");
        System.out.println("**********************");
    }

}

 

相關文章