linux shell

关注公众号 jb51net

关闭
首页 > 脚本专栏 > linux shell > Shell case...in分支语句

Shell中case...in分支语句的应用

作者:李十五哥

shell作为一种脚本编程语言,同样包含循环、分支等其他程序控制结构,从而轻松完成更加复杂、强大的功能,本文主要介绍了Shell中case...in分支语句的应用,感兴趣的可以了解一下

Shell编程中的case…in语句:

伪代码表示:

case $变量 in
     选项1)
         分支1
         ;;
     选项2)
         分支1
         ;;
     选项3)
         分支1
         ;;
         .
         .
         .
     选项n)
         分支n
         ;;
     *)
         其它
         ;;
esac   

case…in语句选项的分类:

实例要求:

从终端输入年份和月份,判断月份的天数。 

#include<stdio.h>
int main(int argc, const char *argv[])
{
   int year, month;
   printf("请输入年份和月份 > ");
   scanf("%d%d", &year, &month);
   if (year < 0) {
      puts("输入的年份错误");
      return -1;
   }
   if (month < 1 || month > 12) {
      puts("输入的月份错误");
      return -2;
   }
/*   
//思路1:
   if ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0))
  {
    switch(month){
     case 1:
     case 3:
     case 5:
     case 7:
     case 8:
     case 10:
     case 12:
		printf("%d年%d月份,共计31天\n", year, month); 
		break;
     case 2:
        printf("%d年%d月份,共计29天\n", year, month);
		break;
		case 4:
		case 6:
		case 9:
		case 11:
        printf("%d年%d月份,共计30天\n", year, month);
		break;
		default:
		  printf("输入月份不合理\n");
		  break;
	 }
	} else {
     switch(month){
        case 1:
        case 3:
        case 5:
        case 7:
        case 8:
        case 10:
        case 12:
		  printf("%d年%d月份,共计31天\n", year, month); 
		  break;
        case 2:
          printf("%d年%d月份,共计28天\n", year, month);
		  break;
		case 4:
		case 6:
		case 9:
		case 11:
          printf("%d年%d月份,共计30天\n", year, month); 
		  break;
		default:
		  printf("输入月份不合理\n");
		  break;
	}
   }
*/  
 //思路2:
     switch(month){
        case 1:
        case 3:
        case 5:
        case 7:
        case 8:
        case 10:
        case 12:
		  printf("%d年%d月份,共计31天\n", year, month); 
		  break;
        case 2:
             if ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0))
			 {
				 printf("%d年%d月份,共计29天\n", year, month);
			 } else {
				 printf("%d年%d月份,共计28天\n", year, month);
			 }
		  break;
		case 4:
		case 6:
		case 9:
		case 11:
          printf("%d年%d月份,共计30天\n", year, month); 
		  break;
		default:
		  printf("输入月份不合理\n");
		  break;
     }
   return 0;    
}
#!/bin/bash
read  -p "请输入查询的年份>>" Y
read  -p "请输入查询的月份>>" M
if [ $Y -lt 0 ]
then
	echo "输入的年份有误,请重新输入!!!"
	exit
fi
if [ $M -lt 1 -o $M -gt 12 ]
then
	echo "输入的月份有误,请重新输入!!!"
	exit
fi
case $M in
    4)
    echo "$Y年$M月共有30天"
	;;
    6)
    echo "$Y年$M月共有30天"
	;;
    9)
    echo "$Y年$M月共有30天"
	;;
    11)
    echo "$Y年$M月共有30天"
	;;
     2)
		 if [ $((Y%4)) -eq 0 -a $((Y%100)) -ne 0 ] || [ $((Y%400)) -eq 0 ]
		 then
           echo "$Y年$M月共有29天"
		 else
           echo "$Y年$M月共有28天"
		 fi
    ;;
    *)
    echo "$Y年$M月共有31天"
	;;
esac

#第一次运行
请输入查询的年份>>2000
请输入查询的月份>>2
2000年2月共有29天
#第二次运行
请输入查询的年份>>2013
请输入查询的月份>>2
2013年2月共有28天
#第三次运行
请输入查询的年份>>-1999
请输入查询的月份>>11
输入的年份有误,请重新输入!!!
#第四次运行
请输入查询的年份>>2001
请输入查询的月份>>13
输入的月份有误,请重新输入!!!
#第五次运行
请输入查询的年份>>2023
请输入查询的月份>>8
2023年8月共有31天
#第六次运行
请输入查询的年份>>2023
请输入查询的月份>>9
2023年9月共有30天

到此这篇关于Shell中case...in分支语句的应用的文章就介绍到这了,更多相关Shell case...in分支语句内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文