이클립스(487)
-
eclipse Error-다중 main()경우 Launching filename.exe has encountered a problem.
다른 소스에 main()구문이 있는 경우 Error가 발생합니다. 한 프로젝트에는 하나의 main()구문이 있어야 하므로 프로젝트안에 있는 소스파일중에 또 다른 main()가 존재한다면 Error가 발생합니다. 오류 메시지 주석처리 하기 실습 중이지 않은 다른 .c파일의 구문을 선택한 후 모두 주석 처리합니다.
-
Error-Problems occurred while trying to save the state of the workbench
오류메시지 Problems occurred while trying to save the state of the workbench. Could not write metadata for '/.org.eclipse.jdt.core.external.folders'. C:\javanAndroid\workspace_android\.metadata\.plugins\org.eclipse.core.resources\.projects\.org.eclipse.jdt.core.external.folders\.markers (지정된 경로를 찾을 수 없습니다) 해결방법 workspace폴더안의 .metadata 폴더 삭제 후 이클립스 재시작
-
SwitchEx01.java-switch문에서 정수 비교하기
switch문에서 정수 비교하기 소스코드 출력결과 소스코드 public class SwitchEx01 { public static void main(String[] args) { java.util.Scanner input = new java.util.Scanner(System.in); int a; System.out.print("정수형 숫자를 입력하세요 > "); a = input.nextInt(); switch(a){// JDK v6: long을 제외한 정수형(byte, short, int), char case 1: System.out.println("1 입력하였습니다."); break; case 2: System.out.println("2 입력하였습니다."); break; case 3: System...
-
eclipse Error-Launch failed. Binary not found ( C programming)
오류 메시지 Launch failed. Binary not found. 원인 프로젝트 생성시 MinGW GC를 선택하지 않은 경우 발생할 수 있습니다. Run configuration에서 MinGW나 gcc 컴파일, 프로젝트 설정이 제대로 되지 않아 발생되는 문제일 수 있습니다. 해결방법 1 프로젝트 새로 생성 해결방법 2 프로젝트 폴더 선택 > 마우스 우클릭 > Properties > Run/Debug Setting > New버튼 클릭 C/C++ Application 선택 > OK Main 탭에서 C/C++ Application: 이 부분이 빈칸으로 되어있습니다. C/C++ Application: Debug/Project명.exe Debug/Project명 입력한 후 > OK OK > Build Pro..
-
Dev+C++ Language 언어 변경
메뉴 > Tools > Environment Options Interface 탭 > Language: 에서 언어 선택 > OK
-
IfEx02.java-단일 if
조건문 - 단일 if (정수형 입력 받은 후 짝수 홀수 구분하기) 소스코드 public class IfEx02 { public static void main(String[] args) { java.util.Scanner input = new java.util.Scanner(System.in); int a; System.out.print("정수형 데이터 하나를 입력 > "); a = input.nextInt(); if(a%2 == 1){ //홀수 체크 System.out.print("홀수 입니다."); }else{ // 짝수 System.out.print("짝수 입니다."); } } } 출력결과