这个程序会提示用户输入一个月份的数字(1-12),然后使用Switch语句根据输入的数字输出对应的英文月份名称。如果输入无效的数字,程序会显示"无效的月份"。 可以考虑以下思路: 了解问题:首先,明确题目要求,即编写一个程序,根据输入的月份数字,输出对应的英文月份名称。 考虑使用Switch语句:题目要求使用Switch语句,所以需...
8 月是第三季度 !相关知识点: 试题来源: 解析 /** * 本例的目的 : 学习 switch 语句。 * 要求 : 先读程序 , 猜测程序运行结果 , 然后再运行程序查看结果 . */ import java.util.Scanner; // 指定 java.util 包中的 Scanner 类在程序中可以使用 public class Example3_4 { // 创建主类 public ...
亲,请您讲 include int main() { // 定义一个指针数组存储月份名称 char *months[12] = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};// 声明用来存储月份号的变量 int number;// 提示用户输入...
include <stdio.h>int main(){ int m = 0; printf("请输入一个月份(1~12):"); scanf("%d",&m) switch(m) { case 1: printf("January\n"); break; case 2: printf("February\n"); break; case 3: printf("March\n"); break; case...
使用switch语句文本框输入一个月份,判断季节 int main(){int a;printf( 请输入月份:1-12 );scanf( %d ,&a);switch(a){case 1:case 2:case 3:printf( 春天\n );break;case 4:case 5:case 6:printf( 夏天\n );break;case 7:case 8:case 9:printf( 秋天\n );break;case 10:ca
(1)用switch语句编写 month=input('请输入月份(1,2,。。。,11,12)');switch month case 1 disp('一月份是春季')case 2 disp('二月份是春季')case 3 disp('三月份是春季')case 4 disp('四月份是夏季')case 5 disp('五月份是夏季')case 6 disp('六月份是夏季')case 7 disp('...
使用switch case语句来显示月份的对应天数 方法一:控制台输入月份 package com.liaojianya.chapter1; import java.util.Scanner; /** * This program demonstrates thw way of implements * display the number of days according to 12 months. * @author Hugh...
int i;switch (i)case 1:printf 一月的英文 break;case 2:printf 二月的英文 break;case 3:printf 三月的英文 break;...case 12:printf 12月的英文 break;这样的就可以,当然这个是不能执行的。只是告诉你格式,因为语法还没完整呢。只是类C语言。
void main(){int month;cout<<"input a month between 1--12:";cin>>month;switch(month){ case 1:cout<<"January 31days\n";break;case 2:cout<<"February 28or29days\n";break;case 3:cout<<"March 31days\n";break;case 4:cout<<"April 30days\n";break;case 5:cout<<"May ...