106运用SWITCH语句打印星期几的单词
package com.chongrui.test;/*运用SWITCH语句打印星期几的单词 * */public class TypeConvertion { public static void main(String[] args){ System.out.println("今天星期几"); int week = 6; switch(week){ case 1: //c...