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
星期二
文章標籤
全站熱搜
留言列表