需求说明:根据每天是周几使用switch语句输出不 同语述,语述如下: 1、周一输出---新的一周开始了 2、周二到周四输出---努力工作 3、周五输出---明天就是周末了 4、周六日输出---放松的休息
时间: 2024-01-12 12:02:54 浏览: 152
解决方案:
```python
import datetime
today = datetime.datetime.now().weekday()
if today == 0:
print("新的一周开始了")
elif today >= 1 and today <= 3:
print("努力工作")
elif today == 4:
print("明天就是周末了")
else:
print("放松的休息")
```
或者使用switch语句:
```python
import datetime
today = datetime.datetime.now().weekday()
switcher = {
0: "新的一周开始了",
1: "努力工作",
2: "努力工作",
3: "努力工作",
4: "明天就是周末了",
5: "放松的休息",
6: "放松的休息"
}
print(switcher.get(today))
```
相关问题
2: switch 语句的使用 需求说明:根据每天是周几使用 switch 语句输出不同语述,语述如下: 1、周一输出﹣-﹣新的一周开始了2、周二到周四输出﹣-﹣努力工作 3、周五输出﹣-﹣明天就是周末了 4、周六日输出﹣-﹣放松的休息
代码实现:
```
var dayOfWeek = new Date().getDay();
switch(dayOfWeek){
case 1:
console.log("新的一周开始了");
break;
case 2:
case 3:
case 4:
console.log("努力工作");
break;
case 5:
console.log("明天就是周末了");
break;
case 6:
case 0:
console.log("放松的休息");
break;
default:
console.log("未知的日期");
break;
}
```
解释:首先获取当前日期的星期几,然后使用 switch 语句进行判断,根据不同的星期数输出不同的语述。当不在 1-7 的范围内时输出"未知的日期"。注意在 case 2 到 case 4 之间使用了多个 case 来合并相同的输出。最后每个 case 结束时加上 break 来结束 switch 语句的执行。
用c语言输入1-7任意的数,输出今天周几
以下是用C语言实现的程序:
```c
#include <stdio.h>
int main() {
int day;
printf("请输入1-7之间的整数:");
scanf("%d", &day);
switch (day) {
case 1:
printf("今天是周一\n");
break;
case 2:
printf("今天是周二\n");
break;
case 3:
printf("今天是周三\n");
break;
case 4:
printf("今天是周四\n");
break;
case 5:
printf("今天是周五\n");
break;
case 6:
printf("今天是周六\n");
break;
case 7:
printf("今天是周日\n");
break;
default:
printf("输入错误,请输入1-7之间的整数\n");
break;
}
return 0;
}
```
程序运行时,会提示用户输入1-7之间的整数,然后根据用户输入的数值使用switch语句输出今天是周几。如果用户输入的数值不在1-7之间,程序会输出错误提示。
阅读全文