1. 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Study_013_1
{
class App
{
public App()
{
int length = 3;
int j = 0;
for(int i=0; i<length; i++)
{
if(j>=length-1)
{
Console.Write("{0}", i);
Console.WriteLine();
}
else
{
Console.Write("{0},",i);
}
j++;
}
}
}
}
|
2. 결과값
'C# > Problems' 카테고리의 다른 글
7. Unity 애니매이션 딜레이 실행 연습 ( attack -> idle -> attack..->idle) , 대리자를 이용해서 이펙트 생성하기 (0) | 2020.05.15 |
---|---|
6. 문자열에 특정 문자열이 포홤되는 지 확인하기( Contains( ) ) (0) | 2020.04.21 |
4. 숫자 앞에 0 과 공백 채우기 (0) | 2020.04.08 |
3. 입력받은 문자열을 부동소수점으로 변환하기(string to float) (0) | 2020.04.08 |
2. 소수점 자리 나타내기 (0) | 2020.04.07 |