일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 멀티플레이
- 모작
- 길건너 친구들
- CGV
- 포트폴리오
- 팀 프로젝트
- Unity
- ChatGPT
- 아마존
- 유니티
- 오브젝트 풀링
- 드래곤 플라이트 모작
- VR
- 드래곤 플라이트
- OVR
- 유니티 GUI
- 오큘러스
- 연습
- 개발
- AWS
- 팀프로젝트
- 유니티 UI
- 유니티 Json 데이터 연동
- meta
- 개발일지
- meta xr
- Photon Fusion
- Oculus
- Amazon S3
- 가상현실
- Today
- Total
목록분류 전체보기 (194)
EasyCastleUNITY

1번 using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { float sumHeight = 0; float mostBig = 0; float mostSmall = 300; for (int i = 0; i 300 || height < 50) { Console.WriteLine("계산범위를 초과하였습니다"); break; } ..

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { for(int i=0; i

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { Console.Write("문자를 입력하세요:"); int word = Console.Read(); for(int i=0; i

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { for(int i=0; i

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { for(int i=0; i

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { Console.Write("영웅의 공격력:"); string attackChar = Console.ReadLine(); int attack = Convert.ToInt32(attackChar); Console.Write("몇회 공격 하시겠습니까?:"); string countChar = Console.ReadLine(); int count = Convert.ToInt32(countChar); for (int i = 0; i < count; i++) { Console.WriteLine("몬스터를 공격({0}) 했습니다.", attack..

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { Console.Write("줄넘기 횟수를 입력 하세요:"); string countChar = Console.ReadLine(); int count = Convert.ToInt32(countChar); for (int i = 0; i < count; i++) { Console.WriteLine("줄넘기를 {0}회 했습니다.", i+1); } } } }

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { Console.Write("구구단의 단수를 입력하세요:"); string numChar =Console.ReadLine(); int num = Convert.ToInt32(numChar); if (num 9) { Console.WriteLine("구구단의 범위를 벗어났습니다"); } else { for (int i = 0; i < 9; i++) { Console.WriteLine("{0}x{1}={2}", num, i + 1, num * (i + 1)); } } } } }