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?

コードを書く時に気を付けること(2024/1201)

Posted at

問 以下①~⑤のデータを格納する変数を定義したい。
① IT業界の生涯賃金
② IT業界の市場規模
③ 自分の好きな季節
④ 自分の夢
⑤ 自分は自信があるかどうか

Ex1_05_11.java
class Ex1_05_11 {
	public static void main (String[] args) {
		int itIndustrlifetimeWage = 195000000; //IT業界の生涯賃金
		long itIndustryMarketSize = 6460800000000L; //IT業界の市場規模
		char myFavoriteSeason = '秋'; //自分の好きな季節
		String myDream = "世界一周"; //自分の夢
		boolean ispreviousGraduate = true; //自分は自信があるかどうか
	}
}

注意点
□見やすいようにコメントを付ける
□リテラルを表記するときの書式に注意
□boolean型を使用するときは、関数名にisを付けるのが一般的
□関数名を設定するときに誰が見てもわかりやすく
例)lifetimeWageだけだとマジックナンバーが何の数字を表しているかわからない

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?