public class testcoding {public static void main(String[] args) {// 중복없이 1~10까지 난수 발생int[] nan=new int[10];// 난수 저장공간int su=0; // 난수 발생시 저장할 변수boolean bDash=false; // 중복여부 확인//true시 난수 다시 발생, false일 경우 저장/* * bDash=true; * while(bDash) * { * 난수 발생 * 저장된 값과 비교 * -> 같은 값이 있을경우 bDash=True * -> 없을경우 저장(false) * } * * nan[] = 저장 */for(int i=0; i
import java.util.Scanner;public class testcoding {public static void main(String[] args) {int[] kor = new int[3];int[] eng = new int[3];int[] math = new int[3];int[] total = new int[3];int[] rank = new int[3]; Scanner scan=new Scanner(System.in); for(int i=0; i
import java.util.Scanner;public class testcoding {public static void main(String[] args) {int[] lastDay={31,28,31,30,31,30,31,31,30,31,30,31};Scanner scan=new Scanner(System.in);//입력받을 변수int year,month,day;System.out.print("년 입력 : ");year=scan.nextInt();System.out.print("월 입력 : ");month=scan.nextInt();System.out.print("일 입력 : ");day=scan.nextInt();//전년도까지의 총 날수int total=(year-1)*365+(year-1)/4-(..
public class testcoding {public static void main(String[] args) {//배열 선언int[] arr={1,2,3,4,5};/* * --------------------------------- * 1 2 3 45 * --------------------------------- * arr arr+1 arr+2 arr+3 arr+4 * arr[0] arr[1] arr[2] arr[3] arr[4] * * int[] arr=new int[5]; * arr[0]=0,0,0,0,0 * arr[0]=1 arr[1]=2 arr[2]=3 arr[3]=4 arr[4]=5 */for(int i=0;i
import java.util.Scanner;public class testcoding {public static void main(String[] args) {int num1,num2;char op;//값 받음Scanner scan = new Scanner(System.in);System.out.print("첫번째 정수 입력 : ");num1=scan.nextInt();System.out.print("두번째 정수 입력 : ");num2=scan.nextInt();System.out.print("사칙연산 입력(+,-,*,/) : ");// Scanner클래스는 char를 받아오는 기능이 없음// char => 문자열// 1.정수 : nextInt()// 2.논리 : nextBoolean()// 3.실수 ..
import java.util.Scanner;public class testcoding {public static void main(String[] args) {int kor,eng,math;//입력값 저장Scanner scan=new Scanner(System.in);System.out.print("국어 점수 : ");kor=scan.nextInt();System.out.print("영어 점수 : ");eng=scan.nextInt();System.out.print("수학 점수 : ");math=scan.nextInt();/* * int a=10; 메모리 생성과 값 입력 * int a; * a=10; * * int a=10, b=20, c=30; * * int a,b,c; * a=10; * b=20; ..
- Total
- Today
- Yesterday
- DnF_카인
- Unleashed
- java
- jsp
- GOD EATER2
- oracle
- C Programming
- 이건사야되!
- jdbc
- 포세리앙 시밤...
- League of legends
- Talesweaver_Palshu
- spring
- 무사헌터G
- PS VITA
- HTML
- Android
- XML
- PSP
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |