일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 포트폴리오
- OVR
- 유니티 UI
- VR
- 개발
- 멀티플레이
- 드래곤 플라이트 모작
- 유니티 GUI
- 앱 배포
- Oculus
- 오큘러스
- 드래곤 플라이트
- meta xr
- 길건너 친구들
- Photon Fusion
- 유니티
- 팀 프로젝트
- 오브젝트 풀링
- meta
- 모작
- 개발일지
- HAPTIC
- 팀프로젝트
- input system
- XR
- 유니티 Json 데이터 연동
- 연습
- CGV
- 가상현실
- ChatGPT
Archives
- Today
- Total
EasyCastleUNITY
2023/07/20 퀴즈 12번 본문
using System;
namespace LearnDotnet
{
internal class Program
{
static void Main(string[] args)
{
Console.Write("문자를 입력하세요:");
int word = Console.Read();
for(int i=0; i<4; i++)
{
char word1 = Convert.ToChar(word);
Console.WriteLine("{0}: {1}",word1,word);
word++;
}
}
}
}
'C#프로그래밍' 카테고리의 다른 글
2023/07/20 도전문제 모음 (0) | 2023.07.20 |
---|---|
2023/07/20 퀴즈 13번 (0) | 2023.07.20 |
2023/07/20 퀴즈 11번 (0) | 2023.07.20 |
2023/07/20 퀴즈 10번 (0) | 2023.07.20 |
2023/07/20 퀴즈 9번 (0) | 2023.07.20 |