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.

【初心者向け】プログラミングのエラー3選

Last updated at Posted at 2019-05-03

こんにちはアキトです。

本日は、プログラミングのエラー3選をご紹介します。

特に初心者が陥りがちなエラーは以下です。

①全角スペースが入っている
②スペル間違い
③閉じタグを忘れている

では詳しく見ていきましょう。

①全角スペースが入っている

コード中に全角スペースが入っているとエラーが起きます。

qiita.rb
input = gets.chomp

上記のコードは「input」と「=」の間に全角スペースが入っています。

②スペル間違い

「puts」が正しいところ「put」としている場合などです。

地味にスペル間違いしていることがあるので、見返してみましょう。

qiita.rb
put input

③閉じタグを忘れている

「if」や「while」などは必ずendが必要です。

中身の処理を書くまえに先にendを書いてしまいましょう。

qiita.rb
if 条件式 
 # 処理を書くまえにendを先に書いておく
end

まとめ

以上まとめると、プログラミング学習初心者はこれら3つのことを気をつけましょう。

①全角スペースが入っている
②スペル間違い
③閉じタグを忘れている

エラーが起きるとテンション下がりますが、落ち着けばきっと解決できるはずです。

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?