ruby 生成随机字符串_Ruby程序生成随机数

ruby 生成随机字符串

产生随机数 (Generating random number)

The task is to generate and print random number.

任务是生成并打印随机数。

Generating random numbers means that any number can be provided to you which is not dependent on any pre-specified condition. It can be anything but must be within a range or limit. Ruby provides you the method for meeting the purpose.

生成随机数意味着可以为您提供任何数字,而不依赖于任何预先指定的条件。 它可以是任何东西,但必须在范围或限制之内。 Ruby为您提供了达到目的的方法。

Methods used:

使用的方法:

  • puts: This method is used to put strings as messages on the screen for creating a better interaction with the user.

    puts :此方法用于将字符串作为消息放在屏幕上,以与用户建立更好的交互。

  • gets: This method is used to take input from the user.

    gets :此方法用于接收用户的输入。

  • rand: This method is a pre-defined method in Ruby library which Is specifically defined for generating a random number. It can be invoked with parameters only otherwise it will give decimal results which are most of the times less than 0. The examples are:

    rand :此方法是Ruby库中的预定义方法,专门为生成随机数而定义。 只能使用参数调用它,否则它将给出十进制结果,大多数情况下小于10。示例包括:

        rand(6)
    rand(0..6)
    rand(9..24)
    

Variables used:

使用的变量:

  • up: It is used to store the upper limit.

    up :用于存储上限。

  • lm: It is used to store the lower limit.

    lm :用于存储下限。

Ruby代码生成随机数 (Ruby code to generate random numbers)

=begin 
Ruby program to pick a random number from a range
=end
#input upper and lower limits
puts "Enter upper limit"
up=gets.chomp.to_i
puts "Enter lower limit"
lm=gets.chomp.to_i
#generate and print the random numbers
#between the given lower and upper limit
puts "The random numbers are..."
puts rand(lm..up)
puts rand(lm..up)
puts rand(lm..up)
puts rand(lm..up)
puts rand(lm..up)

Output

输出量

Enter upper limit
100
Enter lower limit
50
The random numbers are...
91
98
96
95
84

Additional program:

附加程序:

The same concept can be applied to create a lucky draw program in which user will enter his/her name and they will get to know what they have won based on the random number generated by the program.

可以将相同的概念应用于创建幸运抽奖程序,在该程序中,用户将输入他/她的名字,并且他们将基于该程序生成的随机数来知道自己赢了什么。

=begin 
Ruby program for Lucky draw.
=end
puts "Lucky Draw"
#input the name
puts "Enter your name"
name=gets.chomp
#generate a random number 
#pick a lucky number
chk=rand(8) #For getting a random value
#print the result based on the random
#generated lucky number
case chk
when 0
puts "#{name} got Maruti 800"
when 3
puts "#{name} won iphone X"
when 8
puts "#{name} won Rs 10"
when 6
puts "#{name} won Samsung A50"
else
puts "#{name}, Better luck next time"
end

Output

输出量

RUN 1 : 
Lucky Draw
Enter your name
Sunaina
Sunaina, Better luck next time
RUN 2: 
Lucky Draw
Enter your name
Hargun
Hargun, Better luck next time
RUN 3 :
Lucky Draw
Enter your name
Kajal
Kajal won iphone X
RUN 4: 
Lucky Draw
Enter your name
Shivang
Shivang got Maruti 800

翻译自: https://www.includehelp.com/ruby/generate-random-numbers.aspx

ruby 生成随机字符串

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

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

相关文章

leetcode 322. 零钱兑换 思考分析

目录1、题目2、思路分析3、参考链接1、题目 给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。 你可以认为每种硬币的数量是无限的。 提示: 1 …

linux上的英文字体monospace可以在windows用吗?

linux的字体都是开源的,应该可以官方下载本地下载转载于:https://www.cnblogs.com/52linux/archive/2012/03/14/2396103.html

Flash Builder 创建CSS

1.global 选择器将样式应用于所有控件 在 Flash Builder 中创建新MXML 文件并切换到设计模式 属性视图右侧的外观视图可更改外观 Flash Builder 自动创建CSS 文件 CSS 文件有2 个命名空间: s 指 Spark 组件 mx 指 MX 组件 1. Global 与Application 选择器 global …

ruby打印_Ruby程序打印数字的力量

ruby打印Ruby中数字的幂 (Power of a number in Ruby) The task to develop a program that prints power of a number in Ruby programming language. 开发可以用Ruby编程语言打印数字幂的程序的任务。 If we want to calculate the power of a number manually then we have…

二、训练fashion_mnist数据集

一、加载fashion_mnist数据集 fashion_mnist数据集中数据为28*28大小的10分类衣物数据集 其中训练集60000张,测试集10000张 from tensorflow import keras import tensorflow as tf import matplotlib.pyplot as plt import numpy as npfashion_mnist keras.data…

jquerymobile 切换页面时候闪烁问题

https://github.com/jquery/jquery-mobile/commit/acbec71e29b6acec6cd2087e84e8434fecc0053f 可以修改css好像是个bug -4,9 4,10 * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.*/.spin {--webkit-animation-name: spin;--webkit-an…

二分法:两个有序数组长度为N,找到第N、N+1大的数

题目 两个有序数组长度为N,找到第N、N1大的数 思路1:双指针,O(N)复杂度 简述思路: 如果当前A指针指向的数组A的内容小于B指针指向的数组B的内容,那么A指针往右移动,然后nums(当前已经遍历过的数字个数)也…

Javascript -- In

http://www.caveofprogramming.com/articles/javascript-2/javascript-in-using-the-in-operator-to-iterate-through-arrays-and-objects/ http://msdn.microsoft.com/en-us/library/ie/9k25hbz2(vvs.94).aspx转载于:https://www.cnblogs.com/daishuguang/p/3392310.html

三、自动终止训练

有时候,当模型损失函数值预期的效果时,就可以结束训练了,一方面节约时间,另一方面防止过拟合 此时,设置损失函数值小于0.4,训练停止 from tensorflow import keras import tensorflow as tf import matplo…

矩阵形状| 使用Python的线性代数

Prerequisite: Linear Algebra | Defining a Matrix 先决条件: 线性代数| 定义矩阵 In the python code, we will add two Matrices. We can add two Matrices only and only if both the matrices have the same dimensions. Therefore, knowing the dimensions o…

[数据库]oracle客户端连服务器错误

昨天晚上和今天上午用11g客户端连同事10g服务器,报错: The Network Adapter could not establish the connection 检查尝试了好多次都没好。 用程序连,依旧是报这个错,所以一查就解决了! 参考:http://apps…

ASP.NET 抓取网页内容

(转)ASP.NET 抓取网页内容 ASP.NET 抓取网页内容-文字 ASP.NET 中抓取网页内容是非常方便的,而其中更是解决了 ASP 中困扰我们的编码问题。 需要三个类:WebRequest、WebResponse、StreamReader。 WebRequest、WebRespo…

leetcode 53. 最大子序和 动态规划解法、贪心法以及二分法

题目 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 示例: 输入: [-2,1,-3,4,-1,2,1,-5,4] 输出: 6 解释: 连续子数组 [4,-1,2,1] 的和最大,为 6。 进阶: 如果你…

四、卷积神经网络(Convolution Neural Networks)

一、CNN(Convolution Neural Networks) 卷积神经网络基本思想:识别物体的特征,来进行判断物体 卷积Convolution:过滤器filter中的数值与图片像素值对应相乘再相加,6 * 6卷积一次(步数为1)变成4 * 4 Max Pooling:对卷积…

POJ3096Surprising Strings(map)

题意:输入很多字符串,以星号结束。判断每个字符串是不是“Surprising Strings”,判断方法是:以“ZGBG”为例,“0-pairs”是ZG,GB,BG,这三个子串不相同,所以是“0-unique”…

vs助手使用期过 编译CEGUI的问题:error C2061: 语法错误: 标识符“__RPC__out_xcount_part” VS2010...

第一个问题,下一个破解版的VX_A.dll,将其覆盖以前的dll即可, 但是目录有所要求,如下: XP系统:系统盘\Documents and Settings\用户名\Local Settings\Application win7或者vistaData\Microsoft\VisualStud…

五、项目实战---识别人和马

一、准备训练数据 下载数据集 validation验证集 train训练集 数据集结构如下: 将数据集解压到自己选择的目录下就行 最后的结构效果如下: 二、构建模型 ImageDataGenerator 真实数据中,往往图片尺寸大小不一,需要裁剪成一样…

leetcode 122. 买卖股票的最佳时机 II 思考分析

目录题目贪心法题目 给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。 注意:你不能同时参与多笔交易(你必…

css设置a连接禁用样式_使用CSS禁用链接

css设置a连接禁用样式Question: 题: Links are one of the most essential aspects of any web page or website. They play a very important role in making our website or web page quite responsive or interactive. So the topic for discussion is quite pe…

服务器出现 HTTP 错误代码,及解决方法

HTTP 400 - 请求无效 HTTP 401.1 - 未授权:登录失败 HTTP 401.2 - 未授权:服务器配置问题导致登录失败 HTTP 401.3 - ACL 禁止访问资源 HTTP 401.4 - 未授权:授权被筛选器拒绝 HTTP 401.5 - 未授权:ISAPI 或 CGI 授权失败 HTTP 40…