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

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)); } } } } }

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { int sum = 0; for (int i = 0; i < 10; i++) { Console.WriteLine(i+1); sum+=(i+1); } Console.WriteLine("---------------"); Console.WriteLine("sum:{0}",sum); } } }

using System; namespace LearnDotnet { internal class Program { static void Main(string[] args) { string sniffing; for (int i = 0; i < 5; i++) { if(i%2 == 0) // i+1이 대상이기에 이런식으로 짬 { sniffing = "홀"; } else { sniffing = "짝"; } Console.WriteLine("{0}={1}", i + 1, sniffing); } } } }

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) { int count = 0; for (int i = 0; i < 3; i++) { Console.WriteLine("쌩생이를 했습니다"); count += 2; } Console.WriteLine("---------------------------------"); Console.WriteLine("줄넘기를 총 {0}회 했습니다", count); } } }