/*
来来来,初学的伢看过来,练习使用选择结构啦!针对初学者,欢迎开脑洞,大神勿喷!!
需求:万年历,输入年、月、日输出对应的星期几,要求用循环结构哦
*/
import java.util.Scanner;
class IfDemo2_Week {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
*
*
*
}
}
|
|