[C#] 9일차 - 57. 배열의 초기화와 배열 요소의 출력C#/C#200제2021. 1. 29. 21:02
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A057_ArrayBasic
{
class Program
{
static void Main(string[] args)
{
int[] a = { 1, 2, 3 };
Console.Write("a[]: ");
foreach (var value in a)
Console.Write(value + " ");
int[] b = new int[] { 1, 2, 3 };
Console.Write("\nb[]: ");
for (int i = 0; i < 3; i++)
Console.Write(b[i] + " ");
int[] c = new int[3] { 1, 2, 3 };
Console.Write("\nc[]: ");
for (int i = 0; i < c.Length; i++)
Console.Write(c[i] + " ");
int[] d = new int[3];
d[0] = 1;
d[1] = d[0] + 1;
d[2] = d[1] + 1;
Console.Write("\nd[]: ");
foreach (int value in d)
Console.Write(value + " ");
Console.WriteLine();
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 9일차 - 59. 다차원 배열 (0) | 2021.01.29 |
---|---|
[C#] 9일차 - 58. 배열과 Array 클래스 (0) | 2021.01.29 |
[C#] 8일차 - 56. 이중 루프와 피라미드 출력 (0) | 2021.01.23 |
[C#] 8일차 - 55. 1000까지의 소수를 출력하고 몇개인지 출력 (0) | 2021.01.23 |
[C#] 8일차 - 54. 이중 루프를 이용하여 구구단 출력 (0) | 2021.01.23 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!