1.가위 2.바위 3.보 4.종료 입력 : 1 사용자 : 1 컴퓨터 : 2 컴퓨터 승!(사용자 승! or 비겼음!) do-while문으로 해결하지 못한 문제를 다시 생각해서 코드를 짜봤다. package day8; import java.io.*; public class Day8_01 { public static void main(String[] args) throws IOException{ System.out.println("=========="); System.out.println("가위바위보 게임 v1.0"); System.out.println("----------"); int user; do { System.out.println("1.가위 2.바위 3.보 4.종료"); user = System.in..
가위 바위 보 게임 만들기 [결과] 가위 바위 보 게임 v1.0 1.가위 2.바위 3.보 4.종료 입력 : 1 사용자 : 1 컴퓨터 : 2 컴퓨터 승!(사용자 승! or 비겼음!) package day08; import java.io.*; public class Day08_02 { public static void main(String[] args) throws IOException{ System.out.println("==================="); System.out.println("가위 바위 보 게임 v1.0"); System.out.println("-------------------"); boolean sw = true; while (sw) { System.out.printl..
수치가 아닌 행위에 의한 반복수행 제어문! While문 형식 while (논리형조건식) { 실행문자; } do-while문 : 반복 문자이 한 번은 실행되는 제어문! do-while문 형식 do{ 반복문장; }while (조건식) package day07; import java.io.*; public class Day07_06 { public static void main(String[] args) throws IOException{ boolean sw = true; while (sw) { System.out.println("[숫자 입력 확인 프로그램]"); int user = 0; do { System.out.print("숫자 입력(0:종료) : "); user = System.in..
for(초기식; 조건식; 증감식) { 아들 for문의 조건이 참일 때 실행할 구문 } 아빠 for문의 조건이 참일 때 실행할 구문; package day07; public class Day07_04 { public static void main(String[] args) { for (int i=1; i
1에서 10까지의 수를 이용해 아래와 같이 출력될 수 있도록 구현 결과 : 1-2+3-4+5-6+7-8+9-10 = ?? package day07; public class Day07_03 { public static void main(String[] args) { int sum = 0; for (int i=1; i