전체 글(123)
-
숫자 야구 게임(중복 처리 실패)
개요숫자 야구 게임 코드 작성하기 내용 - 숫자야구게임처음 작성한 코드{ Random random = new Random(); int[] targetNumber = new int[3]; string in_user; int[] userGuess = new int[3]; int num;int strikes = 0;int balls = 0; int attempts = 0; bool guessedCorrectly = true; for (int i = 0; i { targetNumber[i] = random.Next(1, 10); } while (guessedCorrectly) { Console.Write("Enter your guess (3 digits): "); in_user = C..
2024.09.06 -
기초문법 복습 ( 문자열 내용 비교, 실수 형변환, 문자열 띄어쓰기, 배열 반복)
개요배웠던 기초문법들중 헷갈리는 문법들 총 정리 내용 - 문자열 내용 비교배열 내용을 비교할 때 SequenceEqual을 사용char[] secretWord = { 'h', 'a', 'n', 'g', 'm', 'a', 'n' };char[] correct = { 'h', 'a', 'n', 'g', 'm', 'a', 'n' } ;if (secretWord.SequenceEqual(correct)){ wordGuessed = true; Console.WriteLine("축하합니다! 단어 맞추기에 성공하셨습니다.");} 내용 - 정수에서 실수로 형변환( (float) )int[] arr = { 10, 20, 30, 40, 50 }; int sum = 0; float average = 0.0f; a..
2024.09.05 -
Unity에서 Google Play Services Resolver 오류2
첫번째 오류 시도한 방법[Unity] Unable to find java in the system path 오류 해결 방법 (tistory.com)위 링크내용처럼 JAVA_HOME 설정후 다시 실행 결과 두번째 오류위 2개의 창이 떳다 해당 오류 해결을 위해 유니티 재설치가 필요해 보여 이번에는 C드라이브 > Program Files 폴더에 유니티애디터를 설치 후 진행세번째 오류애디터 설치 과정에서 설치 오류가 떠서operation not permitted 오류 해결방법 : 네이버 블로그 (naver.com)파일 생성후 권한을 부여하니 문제없이 설치가 됐다. 그이후 다시 Unity에 들어가보니 첫번째 오류, 똑같은 방법으로 두번째 오류까지 다시 돌아왔다.
2024.09.04 -
Unity에서 Google Play Services Resolver 오류
Unity에서 Google Play Services를 설정할 때 발생할 수 있는 몇 가지 오류를 다룹니다. 이 블로그에서는 Win32Exception, GooglePlayServices.JavaUtilities+ToolNotFoundException, 그리고 Mediation requires Mobile Dependency Resolver 오류의 원인과 해결을 시도할 수 있는 접근 방법을 설명합니다.첫번째 오류Win32Exception: ApplicationName='C:\Workspace\FindRtan\Temp\PlayServicesResolverGradle\gradlew.bat', CommandLine='--no-daemon -b "C:\Workspace\FindRtan\Temp\PlayServic..
2024.09.03 -
런칭을 위한 그외의 작업들 (스플래시 이미지, 소리 & 배경음악 넣기)
개요런칭을 위한 작업들 공부하기내용 - 스플래시 이미지스플래시 이미지란 앱을 켰을 때 떴다가 사라지는 이미지!예) 카카오톡 시작할 때 뜨는 이미지 같은 것이랍니다. 1. Edit → Project settings → Player → Splash Image로 접근하기 2. Preview를 눌러 확인하기→ Animation : Dolly - 잠깐 커짐 / Static - 일정 크기→ Splash Style : 배경 / 로고 색 3. Images 폴더에 로고 준비하기https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/game_new/week05/spartaMsg.png → Mesh Type : Full Rect ⇒ Apply 클릭 4. ..
2024.09.02 -
기초 문법 총정리2 (랜덤 숫자 생성, 문자열 처리, out과 ref, is와 as)
개요기초 문법 총정리2 랜덤 숫자 생성 (Random Number Generation)설명컴퓨터 프로그램에서 난수를 생성하는 방법입니다. C#에서는 Random 클래스를 사용하여 난수를 생성할 수 있습니다.1. Random 클래스 사용Random 클래스는 난수를 생성하는 데 사용됩니다. 객체를 생성한 후, Next 메서드를 사용하여 난수를 생성할 수 있습니다.코드Random random = new Random();int randomNumber = random.Next(); // 0과 int.MaxValue 사이의 난수 생성int randomNumberInRange = random.Next(1, 101); // 1과 100 사이의 난수 생성 2. 랜덤 숫자 생성 예제다음은 Random 클래스를 사용하여 1..
2024.08.30