IT/솔루션) Power Java
-
Power JAVA 5장 ) 변수, 연산자, 수식 - Programming_3IT/솔루션) Power Java 2019. 4. 19. 08:08
Power JAVA 5장 ) 변수, 연산자, 수식 - Programming_3 import java.util.*; public class programming_3 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int cm; double inch, inch_1; double ft; System.out.print("키를 입력하시오 : "); cm = input.nextInt(); ft = cm/2.54/12; inch = (ft - (int)ft) * 12; System.out.printf("%dcm는 %d피트 %f 인치 입니다.\n",cm, (int)ft, inch); } }
-
Power JAVA 5장 ) 변수, 연산자, 수식 - Programming_2IT/솔루션) Power Java 2019. 4. 19. 08:07
Power JAVA 5장 ) 변수, 연산자, 수식 - Programming_2 import java.util.*; public class programming_2 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int n1, n2; int big, small; System.out.print("정수를 입력하시오 : "); n1 = input.nextInt(); System.out.print("정수를 입력하시오 : "); n2 = input.nextInt(); if (n1>=n2) { big = n1; small = n2; } else { big = n2; small = n1; } System.out.prin..
-
Power JAVA 5장 ) 변수, 연산자, 수식 - Programming_1IT/솔루션) Power Java 2019. 4. 19. 08:06
Power JAVA 5장 ) 변수, 연산자, 수식 - Programming_1 import java.util.*; public class programming_1 { public static void main(String[] args) { Scanner input = new Scanner(System.in); String name; int age; System.out.print("이름 : "); name = input.nextLine(); System.out.print("나이 : "); age = input.nextInt(); System.out.printf("이름은 %s이고 나이는 %d 입니다.\n",name,age); } }
-
Power JAVA 5장 ) 변수, 연산자, 수식 - LABIT/솔루션) Power Java 2019. 4. 19. 08:05
Power JAVA 5장 ) 변수, 연산자, 수식 - LAB import java.util.*; public class LAB { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("수도입니까? (수도:1 / 수도아님:2) - "); int city = input.nextInt(); switch (city) { case 1 : { System.out.print("인구(단위:만) - "); int people = input.nextInt(); System.out.print("부자의 수 (단위:만) - "); int rich = input.nextInt(); boolean metroc..
-
Power JAVA 4장 ) 자바프로그래밍 기초 - Programming_2IT/솔루션) Power Java 2019. 4. 19. 07:59
Power JAVA 4장 ) 자바프로그래밍 기초 - Programming_2 /* 상점에 가면 우리는 상품에 대한 돈을 내고 영수증을 받는다. * 영수증에는 10% 부가세와 잔돈 등이 인쇄되어 있다. * 구입한 상품의 가격과 손님한테 받은 금액을 입력하면 부가세와 잔돈을 출력하는 프로그램을 작성하여 보자. */ import java.util.Scanner; public class Programming_2 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int getmoney; int price; double plusprice; double change; System.out.print("받은 돈 : "); ..
-
Power JAVA 4장 ) 자바프로그래밍 기초 - Programming_1IT/솔루션) Power Java 2019. 4. 19. 07:57
Power JAVA 4장 ) 자바프로그래밍 기초 - Programming_1 /* 마일을 킬로미터로 변환하는 프로그램을 작성하라. 1마일은 1.609 킬로미터와 같다. 사용자로부터 마일의 값을 읽어 들인다. */ import java.util.Scanner; public class Programming_1 { public static void main(String[] args) { Scanner input = new Scanner(System.in); double mile; double killo; double rate = 1.609; System.out.print("마일을 입력하라 : "); mile = input.nextDouble(); killo = mile * rate; System.out.pri..
-
Power JAVA 4장 ) 자바프로그래밍 기초 - LABIT/솔루션) Power Java 2019. 4. 19. 07:56
import java.util.Scanner; public class LAB { public static void main(String[] args) { double w; double h; double area; double perimeter; Scanner input = new Scanner(System.in); System.out.print("가로 길이 입력 : "); w = input.nextDouble(); System.out.print("세로 길이 입력 : "); h = input.nextDouble(); area = w*h; perimeter = 2*(w+h); System.out.println("사각형의 넓이 : " + area + " 사각형의 둘레 : " + perimeter); } }
-
자바/JAVA 독학 책 ) Power JAVA vs JAVA의 정석IT/솔루션) Power Java 2019. 4. 19. 07:55
일년전쯤 개발자 직으로 일을 하고 있는 친구에게 C랑 JAVA 독학할만한 책을 소개시켜달라고 이야기했더니, C는 "난 정말 ~ 공부한적이 없다구요" 를 소개시켜줬고, JAVA는 Power JAVA를 공부하라고 이야기 해주었다. 그뒤로 연수 기간동안 두 언어를 공부해보려고 했으나, 여행의 참맛에 빠져 소홀히 하게 된 탓인지, C언어 하나조차 다 공부하지 못하고 귀국하였다. 지금에서 뒤늦게, 발등에 불떨어진 듯 C언어를 공부하고, JAVA를 공부하고 있다. 국가기간전략 개발자과정 강의에서 공부하는 책과 구매하고 한번도 보지 않았지만 현재 독학으로 공부하는책을 따로 두고 있는데, 두 책을 소개한다. "Power JAVA" "Java의 정석" 두 책은 조금 다르다. 먼저 개념 설명에 관련해서는 이해하기 쉬운 예..