2
1

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 1 year has passed since last update.

Ruby silver 模擬問題解説1

Last updated at Posted at 2023-05-25

初投稿です!!!
アウトプットをすべく、Ruby silverの模擬問題を抜粋して解説をしていきます。

下記コードの出力を4択から選ぶ問題になっています。

Curry = "udon"
Curry << "rice"
p Curry

1.警告は出ず、”udonrice”と出力される。
2.Curryは定数のため、”udon”と出力される。
3.Curryは定数のため警告が出るが、”rice”と出力される。
4.Curryは定数のため警告が出るが、”udonrice”と出力される

まず、1行目ですが"udon"という文字列をCurryという変数に代入しています。

Curry = "udon"

2行目で、Curryという変数に"rice"という文字列を追加しています。 << 記法は末尾に追加をする意味をしてます。

Curry << "rice"

最終行で、Curryという変数を出力するように指示してます。

p Curry

苦手なコードを言語化する練習にはとてもよい!!!

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?