编制程序实现输入一个1~7之间的数字,输出相应的星期几,如输入1,则输出星期一

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编制程序实现输入一个1~7之间的数字,输出相应的星期几,如输入1,则输出星期一相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
void main()
int n;
printf("请输入一个1~7之间的数字:");
scanf("%d",&n);
switch(n)
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("输入有错!\n");

参考技术A python:
n = eval(input("输入一个1~7之间的数字:"))
n = n-1
a=["星期一","星期二","星期三","星期四","星期五","星期六","星期日"]
print(a[n])
参考技术B '新建一个 text1 和一个 text2

Private Sub Text1_Change()
Select Case Text1.Text
Case Is = 1
Text2.Text = "星期一"
Case Is = 2
Text2.Text = "星期二"
Case Is = 3
Text2.Text = "星期三"
Case Is = 4
Text2.Text = "星期四"
Case Is = 5
Text2.Text = "星期五"
Case Is = 6
Text2.Text = "星期六"
Case Is = 7
Text2.Text = "星期日"
Case Else
Text2.Text = ""
End Select
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
Text1.Text = ""
End Sub
参考技术C 用循环,do ....case

以上是关于编制程序实现输入一个1~7之间的数字,输出相应的星期几,如输入1,则输出星期一的主要内容,如果未能解决你的问题,请参考以下文章

7-3 四则运算(用字典实现) (30 分)

7-48 输出星期名缩写 (70 分)

python 用for循环输入数字1-7判断输出相应星期几?

如何编制python程序,输入n个整数(n从键盘输入,n>0),输出它们的奇数和?要算n本身!!!

PTA 7-20 输出字母序列1 (10分)

第5章-3.四则运算(用字典实现) (30分)