본문 바로가기
728x90

Java 개발자 수업 강의노트/Java 일일 과제18

짝수 자리에 ?를 넣어 9까지 순차적 출력 #짝수 자리에 ?를 넣어서 9까지 순차적 출력이 나오도록 하는 프로그램 결과 ex) 1 ? 3 ? 5 ? 7 ? 9 public class AprilNineteen2 { /** * @param args */ public static void main(String[] args) { // 홀수 사이에 물음표를 출력 ex) 1 ? 3 ? 5.... for(int i=1; i 2012. 4. 19.
a~b 범위 내의 모든 수의 합 #a와 b를 입력받아 범위내의 모든 수를 합한 프로그램 import java.util.Scanner; public class AprilNineteen1 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); System.out.println("입력한 두 숫자의 범위내 모든 수의 합을 구하는 프로그램입니다."); System.out.println("시작할 숫자를 입력하세요:"); int a = sc.nextInt(); System.out.println("마지막 숫자를 입력하세요:"); int b = sc.nextInt().. 2012. 4. 19.
1,3,7,13...출력 프로그램 #1,2,4,7...이 순차적 증가를 통한 것이라면 1,3,7,13...은 2의 배수의 증가 public class AprilEighteen2 { /** * @param args */ public static void main(String[] args) { //1, 3, 7, 13, 21, 31 출력 int a = 1; for(int i=0; i 2012. 4. 19.
홀수(양수), 짝수(음수) 출력 프로그램 #홀수는 양수로, 짝수는 음수로 출력되게 하는 프로그램 결과물 ex) 1, -2, 3, -4, 5..... public class AprilEighteen1 { /** * @param args */ public static void main(String[] args) { //1, -2, 3, -4, 5, -6출력 for(int i=1; i 2012. 4. 19.
짝수인지 홀수인지 알아내는 방법 #입력된 숫자가 짝수인지 홀수인지를 구분하는 프로그램 public static void main(String[] args) { // 입력받은 수의 홀짝 구분 Scanner sc = new Scanner(System.in); System.out.println("숫자를 입력하시오:"); int num = sc.nextInt(); if(num%2==0){ // %: 나머지 값을 구하는 연산자 System.out.println("짝"); }else{ System.out.println("홀"); } } } 2012. 4. 18.
입력받은 세 숫자 중 가장 큰수를 구하는 것 #입력받은 세 숫자 중 가장 큰수를 구하는 것 package step3; import java.util.Scanner; public class Hw1 { /** * @param args */ public static void main(String[] args) { // 세 숫자 중 큰 수를 출력 Scanner sc = new Scanner(System.in); System.out.println("첫 번째 숫자를 입력"); int a = sc.nextInt(); System.out.println("두 번째 숫자를 입력"); int b = sc.nextInt(); System.out.println("세 번째 숫자를 입력"); int c = sc.nextInt(); int max=a; if(maxc){ max.. 2012. 4. 18.
SMALL