KakaoTalk_20190606_001802318.png
  • 246x0w
Welcome
Curriculum
Install&Go
Board
실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
  • 카테고리
  • 전체 게시물
  • 내 게시물
woan7565
2020년 7월 01일

200701

게시판: 소스 코드 제출


//

//

////

////

////public class Main {

//// public static void main(String[] args) {

//// System.out.println("Hello");

//// }

////}

////

////

////

////public class Main {

//// public static void main(String[] args) {

//// System.out.println("Hello World");

//// }

////}

////

////public class Main{

//// public static void main(String[] args) {

//// System.out.println("Hello\nWorld");

//// }

////}

////

////public class Main{

//// public static void main(String[] args) {

//// System.out.println("\'Hello\'");

//// }

////}

////import java.util.Scanner;

////

////public class Main {

//// public static void main(String[] args) {

//// Scanner t = new Scanner(System.in);

////

//// int a = t.nextInt();

//// System.out.println(a);

////

////

////

//// }

////}

////import java.util.Scanner;

////

////public class Main {

//// public static void main(String[] args) {

//// Scanner t = new Scanner(System.in);

////

//// float a = t.nextFloat();

//// System.out.printf("%.6f", a);

////

//// }

////}

////

////

////import java.util.Scanner;

////

////public class Main {

//// public static void main(String[] args) {

//// Scanner t = new Scanner(System.in);

////

//// int a,b = t.nextInt();

////

//// System.out.printf("%d %d" , a,b);

////

////

////

////

////

//// }

////}

////import java.util.*;

////

////public class Main{

//// public static void main(String[] args) {

////

//// Scanner t = new Scanner(System.in);

////

//// long a = t.nextLong();

//// long b = t.nextLong();

//// System.out.println(a+b);

////

////

//// }

////}

////import java.util.Scanner;

////

////public class Main{

//// public static void main(String[] args) {

////

//// Scanner t = new Scanner(System.in);

////

//// int a = t.nextInt();

////

//// System.out.println(-a);

//// }

////}

////import java.util.Scanner;

////public class Main {

//// public static void main(String[] args) {

////

//// Scanner t = new Scanner(System.in);

////

//// int a = t.nextInt();

//// int b = t.nextInt();

////

////

//// System.out.println(a/b);

//// }

////}

////

////import java.util.Scanner;

////public class Main {

//// public static void main(String[] args) {

//// Scanner t = new Scanner(System.in);

////

//// long a = t.nextLong();

//// System.out.println(++a);

//// }

////}

//

//import java.util.*;

//

//public class Main {

// public static void main(String[] args) {

// Scanner t = new Scanner(System.in);

// // a b

// // > >= < <= != ==

// int a = t.nextInt();

// int b = t.nextInt();

// System.out.println(a>b);

// }

//}

//


/*

* && AND(그리고) 조건 두개가 모두 참일대만 참인 것

* 0 0 : 0 > 1

* 0 1 : 0 > 1

* 1 0 : 0 > 1

* 1 1 : 1 > 0

*

* (A && B) > !(A && B)

*

* || OR(또는) 조건 N개 중에 하나라도 참이면 참인 것

* 0 0 : 0 > 1

* 0 1 : 1 > 0

* 1 0 : 1 > 0

* 1 1 : 1 > 0

*

* ! NOT(아니다) 조건 결과가 무조건 반대

* 0 : 1

* 1 : 0

*

*/





//

//import java.util.Scanner;

//

//public class Main {

// public static void main(String[] args) {

// Scanner t = new Scanner(System.in);

//

// int n = t.nextInt();

//

// if(n<10) {

// System.out.println("small");

// }

// else if() {

//

// }

// else if() {

//

// }

//

// try {

//

// }

// catch( ) {

//

// }

// }

//}

//

//public class Main {

// public static void main(String[] args) {

// Scanner t = new Scanner(System.in);

//

// int n = t.nextInt();

//

// if(n>10) {

// System.out.println("asdasdas");

// }

// else if(n>5) {

// System.out.println("asdasd");

// }

// else if(n > 50 && n<100) {

// System.out.println("asdasd");

// }

// }

//}

//import java.util.Scanner;

//public class Main {

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

//

// int a = w.nextInt();

//

// if(a<10) {

// System.out.println("small");

// }

// }

//}

//

//


//import java.util.Scanner;

//public class Main{

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

//

// int a = w.nextInt();

//

// if(a<10) {

// System.out.println("small");

//

// }

// else if(a>=10) {

// System.out.println("big");

// }

// }

//}

//

//import java.util.Scanner;

//public class Main{

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

//

// int a = w.nextInt();

// int b = w.nextInt();

//

// if(a>b) {

// System.out.println(">");

//

// }

// else if(b>a) {

// System.out.println("<");

// }

// else if(a==b) {

// System.out.println("=");

// }

// }

//}

//import java.util.Scanner;

//

//public class Main {

// public static void main(String[] args) {

//

// Scanner w = new Scanner (System.in);

//

// int a = w.nextInt();

// int b = w.nextInt();

//

// if(a>b) {

// System.out.println(a-b);

// }

// else if (a<b) {

// System.out.println(b-a);

// }

// }

//}

//import java.util.Scanner;

//

//public class Main{

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

// int a = w.nextInt();

// int b = w.nextInt();

// int c = w.nextInt();

//

// if((a+b+c)/100%2==0) {

// System.out.println("대박");

// }

// else if((a+b+c)/100%2!=0) {

// System.out.println("그럭저럭");

// }

// }

//}

//

//import java.util.*;

//

//public class Main {

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

//

// int a = w.nextInt();

// int b = w.nextInt();

// int c = w.nextInt();

//

// if(a<=170) {

// System.out.println("CRASH");

// }

// else if(b<=170){

// System.out.println("CRASH");

// }

//

// else if(c<=170) {

// System.out.println("CRASH");

// }

// else {

// System.out.println("PASS");

// }

//}

//}

//import java.util.*;

//

//public class Main {

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

//

// int a = w.nextInt();

// int b = w.nextInt();

// int c = w.nextInt();

//

// if(a<=170) {

// System.out.println("CRASH " + a );

// }

// else if(b<=170){

// System.out.println("CRASH " + b );

// }

// else if(c<=170) {

// System.out.println("CRASH " + c );

// }

// else {

// System.out.println("PASS");

// }

// }

//}


//import java.util.*;

//

//public class Main {

// public static void main(String[] args) {

//

// Scanner w = new Scanner(System.in);

//

// int a = w.nextInt();

// int b = w.nextInt();

//

//

// if(b>=30) {

// System.out.printf("%d %d", a, b-30 );

// }

// else if(a==0) {

// System.out.printf("%d %d", 23, b+30);

// }

// else {

// System.out.printf("%d %d", a-1, b+30);

// }

// }

//

// }


// 1202, 1207

// switch~case


import java.util.*;


public class Main {

public static void main(String[] args) {

Scanner t = new Scanner(System.in);

int n = t.nextInt();

switch(n/* + - * / % */) {

case 1:

System.out.println("111111");

break;

case 2:

case 3:

System.out.println("22222222222222");

break;

case 4:

System.out.println("asdasdasd");

case 5:

System.out.println("45345345");

break;

default:

System.out.println("aaaaaa");

break;

}

}

}

















댓글 0개
0
댓글
댓글 0개
유사 게시물
  • 200701
  • 200701
  • 20220814
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호