suse leap_Ruby程序检查leap年

suse leap

Problem statement: Given a year, we have to check whether it is a Leap year or not using Ruby program.

问题陈述 :给定年份,我们必须使用Ruby程序检查是否为Le年。

Methods used:

使用的方法:

  • gets(): This method is a public instance method of String class which is used to take input from the console.

    gets():此方法是String类的公共实例方法,用于从控制台获取输入。

  • puts(): This method is a public instance method of String class which is used to print Strings on the console.

    puts():此方法是String类的公共实例方法,用于在控制台上打印String。

Program 1:

程序1:

=begin
Ruby program to check whether 
the year is leap year or not.	
=end
puts "Enter the year you want to check"
yr = gets.chomp.to_i
if yr % 400 == 0
puts "#{yr} is a leap year"
elsif yr % 4 == 0 && yr % 100 !=0
puts "#{yr} is a leap year"
else
puts "#{yr} is not a leap year"
end

Output

输出量

RUN 1:
Enter the year you want to check
2020
2020 is a leap year
RUN 2:
Enter the year you want to check
1900
1900 is not a leap year
RUN 3:
Enter the year you want to check
2200
2200 is not a leap year
RUN 4:
Enter the year you want to check
2204
2204 is a leap year

Explanation:

说明:

In the above code, you can observe that first, we have checked whether the year is divisible by 4 or not, if it is divisible by 4 then the year is simply a leap year. Otherwise, to be a leap year, it should satisfy both the conditions which are there in elsif then only it will be considered as a leap year otherwise not.

在上面的代码中,您可以观察到,首先,我们检查了年份是否可以被4整除,如果可以被4整除,那么该年份就是a年。 否则,要成为a年,它应该同时满足elsif中存在的两个条件,然后才将其视为a年。

Program 2:

程式2:

=begin
Ruby program to check whether the 
year is leap year or not between range.		
=end
puts "Enter the lower limit:"
lwr = gets.chomp.to_i
puts "Enter the upper limit:"
upr = gets.chomp.to_i
for yr in lwr..upr do
if yr % 400 == 0
puts "#{yr} is a leap year"
elsif yr % 4 == 0 && yr % 100 !=0
puts "#{yr} is a leap year"
else
puts "#{yr} is not a leap year"
end
end

Output

输出量

Enter the lower limit:
2000
Enter the upper limit:
2100
2000 is a leap year
2001 is not a leap year
2002 is not a leap year
2003 is not a leap year
2004 is a leap year
2005 is not a leap year
2006 is not a leap year
2007 is not a leap year
2008 is a leap year
2009 is not a leap year
2010 is not a leap year
2011 is not a leap year
2012 is a leap year
2013 is not a leap year
2014 is not a leap year
2015 is not a leap year
2016 is a leap year
2017 is not a leap year
2018 is not a leap year
2019 is not a leap year
2020 is a leap year
2021 is not a leap year
2022 is not a leap year
2023 is not a leap year
2024 is a leap year
2025 is not a leap year
2026 is not a leap year
2027 is not a leap year
2028 is a leap year
2029 is not a leap year
2030 is not a leap year
2031 is not a leap year
2032 is a leap year
2033 is not a leap year
2034 is not a leap year
2035 is not a leap year
2036 is a leap year
2037 is not a leap year
2038 is not a leap year
2039 is not a leap year
2040 is a leap year
2041 is not a leap year
2042 is not a leap year
2043 is not a leap year
2044 is a leap year
2045 is not a leap year
2046 is not a leap year
2047 is not a leap year
2048 is a leap year
2049 is not a leap year
2050 is not a leap year
2051 is not a leap year
2052 is a leap year
2053 is not a leap year
2054 is not a leap year
2055 is not a leap year
2056 is a leap year
2057 is not a leap year
2058 is not a leap year
2059 is not a leap year
2060 is a leap year
2061 is not a leap year
2062 is not a leap year
2063 is not a leap year
2064 is a leap year
2065 is not a leap year
2066 is not a leap year
2067 is not a leap year
2068 is a leap year
2069 is not a leap year
2070 is not a leap year
2071 is not a leap year
2072 is a leap year
2073 is not a leap year
2074 is not a leap year
2075 is not a leap year
2076 is a leap year
2077 is not a leap year
2078 is not a leap year
2079 is not a leap year
2080 is a leap year
2081 is not a leap year
2082 is not a leap year
2083 is not a leap year
2084 is a leap year
2085 is not a leap year
2086 is not a leap year
2087 is not a leap year
2088 is a leap year
2089 is not a leap year
2090 is not a leap year
2091 is not a leap year
2092 is a leap year
2093 is not a leap year
2094 is not a leap year
2095 is not a leap year
2096 is a leap year
2097 is not a leap year
2098 is not a leap year
2099 is not a leap year
2100 is not a leap year

Explanation:

说明:

In the above code, you can observe that our program is asking for a range under which we want to find the leap year. You can see that we are getting all the leap years which lie between the range.

在上面的代码中,您可以观察到我们的程序正在寻找一个范围,在该范围内我们想找到the年。 您会看到,我们获得了介于范围之间的所有the年。

翻译自: https://www.includehelp.com/ruby/program-to-check-leap-year.aspx

suse leap

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540808.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

html导航栏点击不能跳转,无法单击导航栏中的链接CSS HTML

不确定是否允许您链接您的网站,但是如果允许。 因此,我可以将所有链接悬停在导航栏中,但我无法点击它们,并且S的图片是可移动的,但无法点击,我做错了什么?无法单击导航栏中的链接CSS HTMLNickeb…

JAVA 取得当前目录的路径/Servlet/class/文件路径/web路径/url地址

2019独角兽企业重金招聘Python工程师标准>>> 在写Java程序时不可避免要获取文件的路径...总结一下,遗漏的随时补上 1.可以在servlet的init方法里 String path getServletContext().getRealPath("/"); 这将获取web项目的全路径 例如 :E:\eclipseM9\worksp…

关于细分到字段的权限系统_操作系统中的细分

关于细分到字段的权限系统为什么需要细分? (Why Segmentation is required?) In the Operating System, an important drawback of memory management is the separation of the users view of memory and the actual physical memory. Paging is the scheme which…

计算机科学技术专业解析,专业解读—计算机科学与技术

原标题:专业解读—计算机科学与技术专业培养目标:本专业培养具有良好的科学素养,系统地、较好地掌握计算机科学与技术包括计算机硬件、软件与应用的基本理论、基本知识和基本技能与方法,能在科研部门、教育单位、企业、事业、技术…

阿里云服务器配置开发环境第五章:Centos7.3切换为iptables防火墙

centos7.3默认使用的防火墙应该是firewall,而不是iptables。而我们xxmj服务器使用的是iptables防火墙。所以,在配置防火墙之前,我们需要先关闭firewall,安装iptables。 1.关闭firewall service firewalld stop systemctl disable …

mba学什么书_MBA的完整形式是什么?

mba学什么书MBA:工商管理硕士 (MBA: Master of Business Administration) MBA is an abbreviation of a Master of Business Administration. It is a masters degree for post-graduation in business administration. This business masters degree program is a …

Qt for Android 开发大坑

Qt for Android 开发大坑 作者: qyvlik Qt 5.5.1 这里说一说比較常见的 Qt 开发安卓的大坑。希望同学们不要做无谓的挣扎,跳过这些坑。输入框 首当其冲的是输入框,Qt 的输入在安卓上表现不佳. 无法支持安卓原生的输入法訪问 Qt 的输入框。就是安卓输入法…

bca ac如何联合索引_BCA的完整形式是什么?

bca ac如何联合索引BCA:计算机应用学士学位 (BCA: Bachelor of Computer Applications) BCA is an abbreviation of Bachelor of Computer Applications. It is a three-year undergraduate program in Computer applications. It is considered equivalent to B.Te…

path r'c test.html',robot framework - robot命令参数解析

robot 命令参数解析version > 3.0.1原文档查看命令:robot --helprobot -h-F --extension value通过文件扩展名控制需要执行的用例。如果只执行一个文件,这个参数无效。需要执行多个扩展名时,用“:”分隔开。Examples:--extension robot-F robot:txt-N…

嘿,程序员,你该学点经济学了!

前言: 笔者一直认为,一个好的程序员,不仅仅是代码敲得好,其它方面的知识和能力相同非常重要。特别是随着年龄的增长。非常多人也慢慢的往管理层发展。这个时候沟通与协调能力变得更加重要,而一些策划,推广方…

linux硬件配置_Linux硬件配置

linux硬件配置What sort of hardware configuration is expected to run Linux? This is a decent question; the real hardware configuration for the OS changes intermittently. The Linux Hardware−HOWTO gives a (pretty much) complete posting of hardware supported…

重邮2019计算机考研复试名单,重庆邮电大学2019年硕士研究生招生复试通知

当前2019年考研分数线已经公布,稳稳过线的同学即可全心准备复试了,中公考研小编整理了“重庆邮电大学2019年硕士研究生招生复试通知”文章,希望对大家有所帮助!各复试考生:根据《2019年重庆邮电大学硕士研究生复试工作方案》&…

Linux相关图解随记

01.dns解析过程02.用户访问网站流程03.局域网电脑上网流程04.网站架构图解转载于:https://blog.51cto.com/qinbin/1954149

数据库范式5nf_第五范式(5NF)| 数据库管理系统

数据库范式5nfFifth normal form (5NF) is also known as project-join normal form (PJ/NF). It is designed to minimize redundancy in relational databases by separating semantically connected relationships in multiple formats to store multi-valued facts. 第五范…

量子物理 詹班 计算机,(电气系计算机系詹班)量子物理作业答案

西南交大峨眉校区大学物理西南交大峨眉校区《大学物理》(量子物理基础)作业6(电气、计算机、詹班)一 选择题1. 以一定频率的单色光照射在某种金属上,测出其光电流曲线在图中用实线表示,然后保持光的频率不变,增大照射光的强度,测出…

MySQL5.6 新特性之GTID【转】

转自 MySQL5.6 新特性之GTID - jyzhou - 博客园http://www.cnblogs.com/zhoujinyi/p/4717951.html 背景: MySQL5.6在5.5的基础上增加了一些改进,本文章先对其中一个一个比较大的改进"GTID"进行说明。 概念: GTID即全局事务ID&#…

python判断素数程序_Python程序检查素数

python判断素数程序什么是质数? (What is a prime number?) A prime number is a natural number that is greater than 1 and cannot be formed by multiplying two smaller natural numbers. 质数是大于1的自然数,不能通过将两个较小的自然数相乘而形…

计算机高级工程师职称评定条件,高级工程师职称评定条件是什么

高级工程师职称评定条件是什么,高级工程师职称有什么作用,以下是小编整理的高级工程师职称评定条件相关内容,供您参考。高级工程师评定条件1、本科毕业及以上,获得工程师资格5年以上,可以申报高级工程师。2、博士毕业&…

c# datetime._C#| DateTime.Year属性与示例

c# datetime.DateTime.Month属性 (DateTime.Month Property) DateTime.Month Property is used to get the year component of this object. Its a GET property of DateTime class. DateTime.Month属性用于获取此对象的年份组成部分。 这是DateTime类的GET属性。 Syntax: 句法…

NO6——KMP

1 int next[N];2 char str1[M],str2[N];3 //str1 长&#xff0c;str2 短4 //len1,len2,对应str1,str2的长5 6 void get_next(int len2)7 {8 int i 0,j -1;9 next[0] -1;10 while(i<len2)11 {12 if(j -1 || str2[i] str2[j])13 {14 …