- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Fortran95程序设计课后习题答案(word版方便)
第四章1.program main implicit none write(*,*) Have a good time.write(*,*) Thats not bad.write(*,*) Mary isnt my name. end program 2.program main real, parameter :: PI=3 implicit none.14159 real radius write(*,*) 请输入半径长 read(*,*) radius write(*,( 面积=f8. 3)) radius*radius*PI end program 3.program main implicit none real grades write(*,*) 请输入成绩 read(*,*) grades write(*,( 调整后成绩为 f8.3)) SQRT(grades)*10.0 end program 4.integer a,b realra,rb a=2 b=3 ra=2.0 rb=3.0 write(*,*) b/a ! 输出1, 因为使用整数计算, 小数部分会无条件舍去 write(*,*) rb/ra ! 输出1.5 5.program main implicit none type distance real meter, inch, cm end type type(distance) :: d write(*,*) 请输入长度: read(*,*) d%meter d%cm = d%meter*100d%inch = d%cm/2.54 write(*,(f8.3米 =f8.3厘米 =f8.3英寸)) d%meter, d%cm, d%inch end program 第五章1.program main implicit none integer money real tax write(*,*) 请输入月收入 read(*,*) money if ( money1000 ) then tax = 0.03 else if ( money5000) then tax = 0.1 else tax = 0.15 end if write(*,( 税金为 I8)) nint(money*tax) end program 2.program main implicit none integer day character(len=20) :: tv write(*,*) 请输入星期几 read(*,*) day select case(day) case(1,4)tv = 新闻 case(2,5)tv = 电视剧 case(3,6)tv = 卡通 case(7)tv = 电影 case default write(*,*) 错误的输入 stop end select write(*,*) tv end program 3.program main implicit none integer age, money real tax write(*,*) 请输入年龄 read(*,*) age write(*,*) 请输入月收入 read(*,*) money if ( age50 ) then if ( money1000 ) then tax = 0.03 else if ( money5000 )then tax = 0.10 else tax = 0.15 end if else if ( money1000 ) then tax = 0.5 else if ( money5000 )then tax = 0.7 else tax = 0.10 end if end if write(*,( 税金为 I8)) nint(money*tax) end program 4.program main implicit none integer year, days logical mod_4, mod_100, mod_400 write(*,*) 请输入年份 read(*,*) year mod_4 = ( MOD(year,4) == 0 ) mod_100 = ( MOD(year,100) == 0 ) mod_400
您可能关注的文档
- 最为完整C与C++的头文件大全.docx
- GMAT阅读63篇前50篇的单词.doc
- 张汉熙 高英第一课The Middle Eastern Bazaar.doc
- After Effects CS4第八章.doc
- 8D的英文版介绍.doc
- 外文电影欣赏练习三.doc
- 12暨大翻译英语.doc
- 制造中精益生产和ERP的双重实现.doc
- QULITY MANAGEMENT PROCEDURES质量管理.doc
- mfc对话框基础要点.doc
- (部编版)九年级历史上册课堂教学第5课 罗马城邦和罗马帝国(课件).pptx
- 部编版九年级道德与法治上学期高效课堂5.1延续文化血脉(练习)(原卷版+解析).docx
- 部编版九年级道德与法治上学期高效课堂6.1正视发展挑战(练习)(原卷版+解析).docx
- 部编版九年级道德与法治上学期高效课堂3.2参与民主生活(练习)(原卷版+解析).docx
- 部编版九年级道德与法治上学期高效课堂第三课追求民主价值(检测)(原卷版+解析).docx
- 部编版九年级道德与法治上学期高效课堂第三单元文明与家园(单元检测)(原卷版+解析).docx
- 苏科版2024-2025学年八年级数学上册2.4 线段、角的轴对称性(专项练习)(基础练)(含答案).docx
- 部编版九年级道德与法治上学期高效课堂第四课建设法治中国(检测)(原卷版+解析).docx
- (部编版)九年级历史上册课堂教学第7课 基督教的兴起和法兰克王国(课件).pptx
- 部编版九年级道德与法治上学期高效课堂4.1夯实法治基础(练习)(原卷版+解析).docx
文档评论(0)