728x90 목록243 일정한 간격의 숫자 출력 #일정한 간격의 숫자(10, 8, 6, 4, 2, 0) 출력 public class For4 { /** * @param args */ public static void main(String[] args) { // 첫 번째 방법 for(int i=10; i>=0; i--){ if(i%2==0){ System.out.print(i+"\t"); } } System.out.println(); //한 줄 내리기 // 두 번째 방법 for(int i=10; i>=0; i-=2){ System.out.print(i+"\t"); } } } 2012. 4. 18. 홀수 출력 방법 #1~20의 숫자 중 홀수를 출력하는 방법 public class For2 { /** * @param args */ public static void main(String[] args) { // 첫 번째 방법 for(int i = 1; i 2012. 4. 18. 입출력문자 #scanner scanner를 이용하여 변수를 입력 받을 수 있다. Scanner sc = new Scanner(System.in); //콘솔에서 입력 받을 준비, sc=변수명 System.out.println("내용"); Int a = sc.nextInt(); //숫자를 입력 받아 a에 할당 Scanner sc = new Scanner(System.in); System.out.println("내용"); String a = sc.next(); //문자를 입력 받아 a에 할당 ex) 성명과 나이를 입력받아 출력 import java.until.Scanner; public static void main(String[] args){ Scanner sc = new Scanner(System.in); Syste.. 2012. 4. 18. 자바 출력 #결과값을 화면에 출력 System.out.println("내용"); print: 한 줄에 출력 println: 출력 후 한 줄 내리기 ex)'사과'출력 public class Apple { /** * @param args */ public static void main(String[] args) { 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. 두 개의 숫자와 연산자를 입력 받아 계산하는 계산기 #두 개의 숫자와 한 개의 연산자를 입력 받아 계산하는 코드 import java.util.Scanner; public class Cond5 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); System.out.println("첫 번째 숫자를 입력하시오:"); int a = sc.nextInt(); System.out.println("두 번째 숫자를 입력하시오:"); int b = sc.nextInt(); System.out.println("연산자를 선택하시오: (0:+, 1:-, 2:*, 3:/)"); int o.. 2012. 4. 18. 이전 1 ··· 37 38 39 40 41 다음 SMALL