Development(8008)
-
IfEx03.java-다중 if문 ( 성적 등급 처리)
조건문 - 다중 if문 ( 성적 등급 처리) 소스코드 public class IfEx03 { public static void main(String[] args) { java.util.Scanner input = new java.util.Scanner(System.in); int score; char grade; System.out.print("성적을 입력하세요 > "); score = input.nextInt(); if( score >= 90 && score = 80 && score = 70 && score =60 && score
-
Eclipse Error-The program file specified in the launch configuration does not exist filename.exe not found (C programming)
오류메시지 The program file specified in the launch configuration does not exist filename.exe not found 방법 1 Ctrl + F11을 눌러 한번 더 Run 수행 방법 2 프로젝트 선택 > 마우스 우클릭 > Build Project Ctrl + F11을 눌러 수행
-
[Archive], 2014 유스마케팅 컨퍼런스 최신 20대 마케팅 트렌드, 발표자료
2014 유스마케팅 컨퍼런스 최신 20대 마케팅 트렌드
-
네이버 앱스토어 인앱결제 가이드
네이버 앱스토어 인앱결제 가이드 http://gamedev.naver.com/index.php/%EB%84%A4%EC%9D%B4%EB%B2%84_%EC%95%B1%EC%8A%A4%ED%86%A0%EC%96%B4_%EC%9D%B8%EC%95%B1%EA%B2%B0%EC%A0%9C_%EA%B0%80%EC%9D%B4%EB%93%9C
-
SQLite Download & 설치
http://www.sqlite.org/download.html 상단의 Downlaod 메뉴를 클릭 한 후 > 페이지를 Precompiled Binaries for Windows 내용의 항목이 보이도록 스크롤 합니다. zip 다운받기 'Precompiled Binaries for Windows'에 해당하는 zip 파일들을 모두 다운로드 받습니다. SQLite 파일 압축 해제 (설치) sqlite-shell 폴더를 새로 만든 후 다운로드 받은 zip파일을 새로 생성한 sqlite-shell 폴더에 파일 압축 해제 시킵니다.
-
SwitchEx03.java-switch()문 (성적 등급 처리하기)
성적등급 처리하기 case레이블을 하나의 그룹으로 묶어서 처리하기 char형 조건값 비교하기 소스코드 public class SwitchEx03 { public static void main(String[] args) { // TODO Auto-generated method stub // switch()문 (성적 등급 처리하기) java.util.Scanner input = new java.util.Scanner(System.in); int score; char grade; System.out.println("정수형 성적을 입력하세요 > "); score = input.nextInt(); switch(score/10){ case 10: case 9:{ // 10, 9레이블을 하나의 부류로 묶어서 처리하게..