import java.util.Scanner;public class testcoding {public static void main(String[] args) {int[] arr=new int[16]; // 초기 배열값은 모두 0으로 초기화int su=0;//int s=su;Scanner scan=new Scanner(System.in);//입력값 저장su=scan.nextInt();int index=15; // 뒤에서부터 채워넣음while(true) // 무한루프{arr[index]=su%2;su=su/2;index--;if(su==0) // 루프 탈출 조건{break;}}//출력for(int i=0; i
import java.util.Scanner;public class testcoding {public static void main(String[] args) {// 입력을 받을수 있는 기능 설정Scanner scan=new Scanner(System.in);//난수 저장 공간int[] com=new int[3];//사용자 입력 저장 공간int[] user=new int[3];//난수 발생 1~9사이의 수 저장(중복 없음)int su=0;boolean bDash=false; // 중복 여부 확인. 중복 = true/중복 아님 = false//난수 3개 발생for(int i=0; i
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
- Total
- Today
- Yesterday
- HTML
- Android
- 무사헌터G
- XML
- jsp
- Talesweaver_Palshu
- 이건사야되!
- C Programming
- 포세리앙 시밤...
- oracle
- DnF_카인
- PS VITA
- java
- spring
- PSP
- Unleashed
- GOD EATER2
- League of legends
- jdbc
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |