Java

it/programming

[JAVA] 용돈 저축하기 게임( 자바 숙제 )

남은 돈과 심심지수, 그리고 남은 시간을 적절하게 조정해서 10만원을 모으는게 목표인 게임 선린 fitness club을 약간 모방하였다. me.java( 메인클래스 ) import java.util.Scanner; public class me { public static void main(String args[]) { Scanner sc=new Scanner(System.in); Cont c=new Cont(); System.out.println("*^* 수학여행때 입고갈옷을 사기위해 !! *^*"); while(true) { System.out.print("1. 등록\t2. 용돈\t3.종료\t"); int menu=sc.nextInt(); switch(menu) { case 1: c.enroll();..

it/programming

[JAVA] 메소드 생성자 사용 League of Legends 상점구현

import java.util.Scanner; class champ { String code, name; int price; champ(String code, String name, int price) { this.code=code; this.name=name; this.price=price; } champ(String code, String name) { this.code=code; this.name=name; this.price=0; } void purchase() { if(this.price==0) System.out.println("이미 구입한 챔피언 입니다."); else { System.out.println(""); switch(this.code) { case "1": System.out.pr..

it/programming

[JAVA] 메소드와 생성자를 이용한 가상 DB 관리

import java.util.Scanner; class Product { String code, name; int price, discount; Product(String code, String name, int price, int discount) { this.code=code; this.name=name; this.price=price; this.discount=discount; } Product(String code, String name, int price) { this.code=code; this.name=name; this.price=price; this.discount=0; } void setDiscount(int discount){this.discount=discount;} int cal..

it/programming

[JAVA] a 와 b 사이의 정수의 합 구하기

import java.util.Scanner; public class scan { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int a=1,b=1,i,sum=0; while(a+b!=0) { System.out.print("정수 2개 입력 : "); a=sc.nextInt(); b=sc.nextInt(); if(a>b) { i=b; b=a; a=i; } for(i=a;i

it/programming

[JAVA] 나누기 몫, 나머지 구하기

import java.util.Scanner; public class scan { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int a=1, b=1; while(a+b!=0) { System.out.print("정수 2개 입력(피제수 제수 순으로 입력) : "); a = sc.nextInt(); b = sc.nextInt(); if(b!=0) System.out.println(a + " 나누기 " + b + " : 몫" + (a/b) + ", 나머지 " + (a%b)); else if(a!=0) System.out.println("제수가 0이면 안 된다."); } System.out.println("종료합니다..

it/programming

[JAVA] 입출력, 연산자, 제어문

import java.util.Scanner; public class scan { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int a, b; System.out.println("정수 2개 입력"); a = sc.nextInt(); b = sc.nextInt(); System.out.println(a +" "+ b); System.out.println("두 수의 합계는" + (a+b) + "이고, 평균은 " + (float)(a+b)/2 +"이다."); if(a

it/programming

[java] 변수 타입

-------------------------------------------------------------------------------------- 종류 설명 저장 공간 값의 범위 (최소값~최대값) ====================================================================================== boolean 논리값 1 bit true / false -------------------------------------------------------------------------------------- byte 부호 있는 정수 8 bits -128 ~ 127 ----------------------------------------------..

it/programming

[java] hello world 출력

public class hello { public static void main(String[] args) { System.out.println("Hello World !!"); } } class 명과 같은 파일명.java cmd창에서 javac 파일명.java 를 통해 컴파일 후java 파일명 으로 실행 Hello World 성공

반응형
훈솔
'Java' 태그의 글 목록