20_두 정수 사이의 합_개인 과제 정리_튜터님 특강_25.1.9(목) 코트카타22) 두 정수 사이의 합나의 풀이public class Ex22 { static class Solution { public long solution(int a, int b) { long answer = 0; if (a == b) { answer = a; } while (true) { if (a > b) { answer += b; b++; if (a == b) { answer += a; .. CODING/스파르타 내일배움캠프 TIL 2025.01.09
계산기 개인과제 관련 트러블슈팅 TIL 모음 참고 : https://github.com/codingTrip-IT/calculator2025.01.02(목)Lv1 트러블 슈팅첫 번째 오류Process 'command '/Library/Java/JavaVirtualMachines/jdk-11.0.10.jdk/Contents/Home/bin/java'' finished with non-zero exit value 1Intellij, Gradle 환경에서 Java 코드 작성 후 실행 시 이런 에러가 나왔다.[ Intellij IDEA> Settings] 클릭 (맥 단축키 : Command + ,)[Build, Excution, Deployment > Build Tools > Gradle] 클릭Build and run using과 Run tests usi.. CODING/스파르타 내일배움캠프 TIL 2025.01.09