- 1、本文档共9页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Fortran练习经典题目
a, 输入一个年、月、日并计算它是本年度的第几天。
b.输入任意一年份,给出该年出生人的属相,如1945年出生的人的属相为“鸡”。
c.显示输出2000~2099年的任何一年的某一月的月历,所要显示的年月有键盘输入。如2002年5月的月历形式如下;
5月 2002年
日 一 二 三 四 五 六
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
d.显示输出2000~2099年的任何一年的年历,并写入一文本文件中。
e.以上功能都应从菜单中选择执行。
提示:a中若y为年份,d是该年的某月某日从1月1日开始经过的天数,则s=(y-1)*1.2425+d。若s除以7后所得的余数取整后为0,则为周日,为1则周一。
program firstquestion
implicit none
integer::q,i,lday
integer::year,month,day,days,mday,ds
character(len=2),dimension(1:37)::tem
! 这个程序可以同时在屏幕和文本中输出计算结果。为了计算不同的问题,引入变量q,当q=1时,计算某年月日是此年的第几天;
! 当q=2时,计算某年的属相;当q=3时,计算月历;当q=4时,计算年历;当q=0时,退出此程序。此外,此程序还设置了对输入
! 年、月、日的判断,判断其是否合法。
print *,when q=1,this program can resolve the question that which day some day is in some year! this is the question one.
print *,when q=2,this program can obtain the shengxiao of some year! this is the question two.
print *,when q=3,this program can obtain the calendar of some month of some year(2000-2099)! this is the question three.
print *,when q=4,this program can obtain the Almanac of some year(2000-2099)! this is the question four.
print *,If you want to exit from this program,please input q=0.
do
print *,input the number of q:
read *,q
if(q==0) exit
if (q==1) then
2000 print *,input the year, the month and the day:
read *,year,month,day
if (month12.or.month0) print *,you input wrong month.
if (month12.or.month0) goto 2000
call leapday(year,month,day,lday)
if (lday==0) print *,you input wrong day.
if (lday==0) goto 2000
call numday(year,month,day,days)
print (a14,i3,a18),The day is the,days, day of this year.
open(25,file=days.dat,status=unknown)
write(25,(a14,i3,a18)) The day is the,days, day of this year.
close(25)
else if (q==2) then
print *,input the year:
read *,year
call shengxiao(year)
else if (q==3) then
2001 print *,input the
您可能关注的文档
- 2008 年纪念相机.doc
- 0011 连铸工艺48问.pdf
- 订制裸钻钻戒.doc
- 网吧拓扑图案例.doc
- 课后习题电力电子(大三上).doc
- 《经济基础理论及相关知识》纸条.doc
- 长沟锰矿安全标准化自评评分表(新标准).doc
- 雅思听力经典陷阱.ppt
- 二氧化碳制取的研究三课时.ppt
- 小学一年级口算竞赛试题.doc
- 《8.6 认识平行线》大单元教学设计 苏教版数学四年级上册.pdf
- 《8.5 垂线的画法》大单元教学设计 苏教版数学四年级上册.pdf
- 《7.1 扇形统计图》大单元教学设计人教版数学六年级上册.pdf
- 7.2 数量关系 大单元教学设计 人教版数学一年级上册.pdf
- 北师大版数学一年级上册《总复习》大单元整体教学设计.pdf
- 人教版信息科技三年级上册全册教学设计教案.pdf
- 统编版语文六年级上册第八单元大单元教学规划解析.pdf
- 《8.1 用字母表示数(一)》大单元教学设计 苏教版数学五年级上册.pdf
- 第八单元《垂线与平行线》单元整体设计 苏教版数学四年级上册.pdf
- 部编版三年级上册语文第二次月考(5、6单元)测试卷 含答案.pdf
文档评论(0)