package ch7;
import java.io.*;
public class ch7_10_1
{
    public static void main(String awgs[]) throws IOException
    {
        InputStreamReader in=new InputStreamReader(System.in);
        BufferedReader buf=new BufferedReader(in);
        String s[]= {"一","二","三","四","五","六","日"};
        String ent;
        int a;
        ent=buf.readLine();
        a=Integer.parseInt(ent);
        if (a>=0 & a<=6)
        {
            System.out.print("星期"+s[a]);
        }
        else
        {
            System.out.print("只可以輸入0~6");
        }
    }

}
 

=================

1
星期二

arrow
arrow
    文章標籤
    JAVA
    全站熱搜
    創作者介紹
    創作者 驢子 的頭像
    驢子

    驢子的生活日記

    驢子 發表在 痞客邦 留言(0) 人氣()