0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ruby 入門#1(出力、出力)

Last updated at Posted at 2019-10-22

Rubyの勉強アウトプット
今回は、標準出力、標準入力について記載します。

標準出力

コンソールに文字列を表示するメソッド。
標準出力は複数メソッドが存在しますが、
今回は以下の2点を紹介します。

print
●改行されない。
●引数が文字列に変換され、出力されます。
【入力】

print "Hello"
print "World!"

【出力】

HelloWorld!

puts
●改行される。
●引数が文字列に変換され、出力されます。
【入力】

puts "Hello"
puts "World!"

【出力】

Hello
World!

出力値
計算結果、条件式の結果も表示することができます。
【入力】

#計算結果
puts 1 + 1
#条件式結果
math = 1
puts math == 0

【出力】

2
false

標準入力

キーボードから値を入力する。
変数名 = gets.chomp

【入力】

puts "お名前は?"
name = gets.chomp
puts "こんにちは、" + name + "さん"

【出力】

#入力値は田中
お名前は?
田中
こんにちは、田中さん
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?