top of page

게시판 게시물

Myunggyun YU
2020년 6월 06일
In 소스 코드 제출
//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'"); // } //} //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("\"!@#$%^&*()\""); // } //} //public class Main { //public static void main(String[] args) { // System.out.println("\"C:\\Download\\hello.cpp\""); //} //} //import java.util.*; // //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.*; // //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.*; // //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.*; // //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); // long a = t.nextLong(); // long b = t.nextLong(); // // System.out.println(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.*; // //public class Main { // public static void main(String[] args) { // Scanner t = new Scanner(System.in); // long a = t.nextLong(); // // System.out.println(a+1); // } //} //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); // System.out.println(a-b); // System.out.println(a*b); // System.out.println(a/b); // System.out.println(a%b); // System.out.printf("%.2f", (double)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(); // long c = t.nextLong(); // // System.out.println(a+b+c); // System.out.printf("%.1f", (float)(a+b+c)/3.0); // } //} import java.util.*; public class Main { public static void main(String[] args) { Scanner t = new Scanner(System.in); boolean a = t.nextBoolean(); boolean b = t.nextBoolean(); System.out.print(a&&b); //; } }
0
3
9

Myunggyun YU

더보기
bottom of page