목록Programming/Java (4)
기린의 기록을 위한 공간
[****5 찍기] public void ch6doubleArray() {Scanner sc=new Scanner(System.in); System.out.print("정수 입력 : ");int num = sc.nextInt();if(num>0) {for(int i=0; i
[문제] 로또번호 생성기 프로그램 public void lotto() { int lotto [] = new int [6];//길이 6인 배열생성[0,1,2,3,4,5] while(true) { for(int i=0; i=lotto[1]&&lotto[1]>=lotto[2]&&lotto[2]>=lotto[3]&&lotto[3]>=lotto[4]&&lotto[4]>=lotto[5])){ for(int i =0; i=lotto[i+1]) {//앞에수가 커야하니까 앞에 수가 크거나 같으면 다음수를 뽑기 }else {//앞에수가 작았을 때 뒤에수랑 바꾸는 코드 temp=lotto[i];//둘중에 아무거나 temp에 넣고 lotto[i]=lotto[i+1];//lotto[i]값은 temp에 복사를해놨으니까 덮어씌워도..
[main] package com.game.main; import com.game.view.MainView; public class GameMain { public static void main(String[] args) { MainView mv = new MainView(); mv.mainMenu(); } } [main view] package com.game.view; import java.util.Scanner; import com.game.controller.GameController; public class MainView { GameController ct = new GameController();//컨트롤러로 return해야하니까 객체선언함 public void mainMenu() { Sca..