開発環境
- OS: Windows 10 Pro
- IDE(統合開発環境): Visual Studio Community 2017
Head First C# ―頭とからだで覚えるC#の基本 (Andrew Stellman (著)、Jennifer Greene (著)、佐藤 嘉一 (監修, 監修)、木下 哲也 (翻訳)、オライリージャパン)の4章(型と参照 - 10時です。データがどこにあるか分かりますか?)、コードマグネット(p. 157)を取り組んでみる。
コード
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp10 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string[] islands = new string[4]; int[] index = new int[4]; int refNum; int y = 0; string result = ""; islands[0] = "バミューダ"; islands[1] = "フィジー"; islands[2] = "アゾレス"; islands[3] = "コスメル"; index[0] = 1; index[1] = 3; index[2] = 0; index[3] = 2; while (y < 4) { refNum = index[y]; result += "\n島 = "; result += islands[refNum]; y += 1; } MessageBox.Show(result); } } }
0 コメント:
コメントを投稿