목록Programming (29)
기린의 기록을 위한 공간
데이터 출력하는 방법 두가지 [1. 화면에 글자를 출력하는 것]1) write() - body태그 내부에 문구를 추가하는 함수 2) 태그의 content에 쓰여진 문구를 추가하거나 수정하는방법- innerHTML - 태그를 적용해서 출력- innerText - 태그를 문자로 출력 [2. 화면이 아닌 팝업창, console창에 출력하는 방법]1) 팝업(모달창) : window.alert() *window는 기본으로 사용이 되기때문에 생략가능 2) 콘솔창 : console.log() 디버깅, 에러메세지 출력용 console.log("이건 콘솔창에 출력되는 값"); - 자바의 System.out.println();이랑 비슷함 console.info("이건 관련 정보를 출력해줄때 사용"); console.war..
[****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..