남은 돈과 심심지수, 그리고 남은 시간을 적절하게 조정해서 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();..
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
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
-------------------------------------------------------------------------------------- 종류 설명 저장 공간 값의 범위 (최소값~최대값) ====================================================================================== boolean 논리값 1 bit true / false -------------------------------------------------------------------------------------- byte 부호 있는 정수 8 bits -128 ~ 127 ----------------------------------------------..
public class hello { public static void main(String[] args) { System.out.println("Hello World !!"); } } class 명과 같은 파일명.java cmd창에서 javac 파일명.java 를 통해 컴파일 후java 파일명 으로 실행 Hello World 성공