本程序要求输入一个数字,输出一个对应星期的英文单词
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本程序要求输入一个数字,输出一个对应星期的英文单词相关的知识,希望对你有一定的参考价值。
python 3.2 下: dict = ['Sunday','Monday','Tuesday','Thirthday','Thurday','Friday','Saturday']print(dict[int(input())]) 搞定. 如果其他语言也差不多,就是第1步定义一个数组把所有英文单词存进去(上面的dict),第2步获取用户输入(上面的input())第3布把输入转成数字(上面的int())第4步用这个数字做索引去取数组,(上面的中括号)第5步输出结果(上面的print()) python写起来可能简单点,其他程序另外还需要判断用户的输入不能超过7,如果输入8或者9要报错,(python没这个问题, 如果输入7就是星期天,8就是星期一以此类推) 参考技术A 代码:#include <stdio.h>#include <string.h>int main()
int i;
char week_day[][10]="sunday","monday","tuesday","wednesday","thursday","friday","saturday";
printf("请输入一个星期的数字:\n");
scanf("%d", &i);
if(i<7)
printf("%s\n", week_day[i]);
else
printf("ERROR!\n"); getchar();
getchar();
return 0;
结果
编制程序实现输入一个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中任一整数,利用switch输出对应的星期的英文单词