免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1319 | 回复: 9
打印 上一主题 下一主题

初级菜鸟求助(三) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-09-15 11:10 |只看该作者 |倒序浏览
要求:Display a calendar for a specific month and year of your friend’s birth date, as well as displaying the day of the week of your friend’s birth date.
我写的是:
     
  1. echo -n "Please input the YEAR of your friend's birthday:"
  2.          read year
  3.          echo -n "Please input the MONTH of your friend's birthday:"
  4.          read month
  5.          echo -n "Please input the DAY of your friend's birthday:"
  6.          read day
  7.          cal $month $year
  8.          echo -n "The day of the week is "
  9.          cal $month $year | grep $day | awk '{if($0 == '"$day"') {print "Sun"} else
  10.                                              {if($1 == '"$day"') {print "Mon"} else
  11.                                              {if($2 == '"$day"') {print "Tue"} else
  12.                                              {if($3 == '"$day"') {print "Wed"} else
  13.                                              {if($4 == '"$day"') {print "Thu"} else
  14.                                              {if($5 == '"$day"') {print "Fri"} else
  15.                                              {print "Sat"}}}}}}}'
  16.                                              ;;
复制代码
显示结果有错误,而且还有就是:关于输入年,月,日,当我在输入年时输入错误的格式,比如说,我直接输34,45,程序没有提示错误。当我输入错误的月份时,有提示。当我输入错误的日时,也没有报错提示,这些判断该如何限制和添加呢?
谢谢大家!

论坛徽章:
0
2 [报告]
发表于 2003-09-15 11:50 |只看该作者

初级菜鸟求助(三)

cal:
A single parameter specifies the year (1 - 9999) to be displayed; note
     the year must be fully specified: ``cal 89'' will not display a calendar
     for 1989.  Two parameters denote the month (1 - 12) and year.

论坛徽章:
0
3 [报告]
发表于 2003-09-15 12:21 |只看该作者

初级菜鸟求助(三)

首先,感谢deathcult的指导。
但是实在不好意思,还是不太知道如何修改,笨笨中......
请帮忙直接在原script修改明示。谢谢。

论坛徽章:
0
4 [报告]
发表于 2003-09-15 12:37 |只看该作者

初级菜鸟求助(三)

你试者让read嵌入一个循环中,判断输入的合法性,迫使输入的正确

论坛徽章:
0
5 [报告]
发表于 2003-09-15 12:41 |只看该作者

初级菜鸟求助(三)

如何添加啊?请问,我是初级大菜鸟啊!
请指明,谢谢!

论坛徽章:
0
6 [报告]
发表于 2003-09-15 12:44 |只看该作者

初级菜鸟求助(三)

除了对输入的判断以外,你的代码也要改一下


  1. echo "Please input the YEAR of your friend's birthday:\c"
  2. read year
  3. echo "Please input the MONTH of your friend's birthday:\c"
  4. read month
  5. echo "Please input the DAY of your friend's birthday:\c"
  6. read day
  7. cal $month $year
  8. echo "The day of the week is "`cal $month $year | grep $day \
  9.                                | awk '{if($1 == '"$day"') {print "Sun"} else
  10.                                       {if($2 == '"$day"') {print "Mon"} else
  11.                                       {if($3 == '"$day"') {print "Tue"} else
  12.                                       {if($4 == '"$day"') {print "Wed"} else
  13.                                       {if($5 == '"$day"') {print "Thu"} else
  14.                                       {if($6 == '"$day"') {print "Fri"} else
  15.                                       {if($7 == '"$day"') {print "Sat"}}}}}}}}'`

复制代码
   

solaris的ksh下测试通过

论坛徽章:
0
7 [报告]
发表于 2003-09-15 13:00 |只看该作者

初级菜鸟求助(三)

sry, 我是bash,显示结果出错。

论坛徽章:
0
8 [报告]
发表于 2003-09-15 15:42 |只看该作者

初级菜鸟求助(三)

in Linux,bash:
  1. echo -n "Please input the YEAR of your friend's birthday:"
  2. read year
  3. echo -n "Please input the MONTH of your friend's birthday:"
  4. read month
  5. echo -n "Please input the DAY of your friend's birthday:"
  6. read day
  7. #cal $month $year
  8. echo "The day of the week is "$(cal $month $year | grep $day|awk '{if($1 == '"$day"') {print "Sun"} else
  9. {if($2 == '"$day"') {print "Mon"} else
  10. {if($3 == '"$day"') {print "Tue"} else
  11. {if($4 == '"$day"') {print "Wed"} else
  12. {if($5 == '"$day"') {print "Thu"} else
  13. {if($6 == '"$day"') {print "Fri"} else
  14. {if($7 == '"$day"') {print "Sat"}}}}}}}}')
复制代码
结果:
  1. Please input the YEAR of your friend's birthday:2003
  2. Please input the MONTH of your friend's birthday:09
  3. Please input the DAY of your friend's birthday:15
  4. The day of the week is Mon
复制代码

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
9 [报告]
发表于 2003-09-15 15:44 |只看该作者

初级菜鸟求助(三)

[quote]原帖由 "eidolonye"]sry, 我是bash,显示结果出错。[/quote 发表:
  
朋友:不能这样吧?请配合一下  

别人帮你忙,至少也该提供些线索吧?
错了,错在那儿?系统指出的错误信息呢?不能让人猜谜吧! 把你的屏幕信息贴出来,让别人帮你诊断好不好!?

论坛徽章:
0
10 [报告]
发表于 2003-09-15 21:46 |只看该作者

初级菜鸟求助(三)

好的,改次一定注意,对不起!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP