1 / 4

学籍番号を入力

開始. 学籍番号を入力. 名前を入力. 住所を入力. 学生情報を名簿に追加. まだ入力する?. 終了. 配列. 個別の変数. int a = 1; int b = 3; int c = 5;. int [] x = { 1, 3, 5 };. a. 1. c. 5. x. 1. 3. 5. b. 3. ばらばら. 連続した領域. int [,] rect = { { 1 , 2 }, { 3 , 4 }, };. int [][] jug = { new [] { 1 },

tadita
Download Presentation

学籍番号を入力

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 開始 学籍番号を入力 名前を入力 住所を入力 学生情報を名簿に追加 まだ入力する? 終了

  2. 配列 個別の変数 int a = 1; int b = 3; int c = 5; int[] x = { 1, 3, 5 }; a 1 c 5 x 1 3 5 b 3 ばらばら 連続した領域

  3. int[,] rect = { { 1, 2 }, { 3, 4 }, }; int[][] jug = { new[] { 1 }, new[] { 2, 3, 4 }, }; 1 2 1 3 4 2 3 4

More Related