[JAVA] ์ฝ๋์ 1021 ~1030 ๐ฅ
1021
๋จ์ด 1๊ฐ ์ ๋ ฅ๋ฐ์ ๊ทธ๋๋ก ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); String value = scan.next(); System.out.println(value); } }
1022
๋ฌธ์ฅ 1๊ฐ ์ ๋ ฅ๋ฐ์ ๊ทธ๋๋ก ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String value = scan.nextLine(); System.out.printf(value); } }
next()์ nextLine()์ ์ฐจ์ด
- next() ๋ฌธ์ ๋๋ ๋ฌธ์์ด์ ๊ณต๋ฐฑ์ ๊ธฐ์ค์ผ๋ก ํ๋จ์ด๋๋ ํ๋ฌธ์ ์ฉ ์ ๋ ฅ ๋ฐ๋๋ค.
- nextLine() ๋ฌธ์ ๋๋ ๋ฌธ์ฅ ํ๋ผ์ธ ์ ์ฒด๋ฅผ ์ ๋ ฅ ๋ฐ๋๋ค.
ex) Hello world ์ ๋ ฅ
next()
nextLine()
1023
์ค์ 1๊ฐ ์ ๋ ฅ๋ฐ์ ๋ถ๋ถ๋ณ๋ก ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String value = scan.next(); String valueList[] = value.split("[.]"); System.out.println(valueList[0]); System.out.println(valueList[1]); } }
1024
๋จ์ด 1๊ฐ ์ ๋ ฅ๋ฐ์ ๋๋์ด ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String value = scan.next(); char valueList[] = new char[value.length()]; for(int i=0; i < valueList.length; i++){ valueList[i] = value.charAt(i); } for(int i=0; i < valueList.length; i++){ System.out.println("'"+valueList[i]+"'"); } } }
1025
์ ์ 1๊ฐ ์ ๋ ฅ๋ฐ์ ๋๋์ด ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); char charArr[] = scan.next().toCharArray(); for(int i=0; i < charArr.length; i++){ System.out.print("["+charArr[i]); for(int j=0; j< 4-i; j++){ System.out.print("0"); } System.out.println("]"); } } }
1026
์๋ถ์ด ์ ๋ ฅ๋ฐ์ ๋ถ๋ง ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String value = scan.next(); String valueArr[] = value.split(":"); System.out.printf("%d",Integer.parseInt(valueArr[1])); } }
1027
๋ ์์ผ ์ ๋ ฅ ๋ฐ์ ํ์ ๋ฐ๊ฟ ์ถ๋ ฅํ๊ธฐ
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String value = scan.next(); String[] valueArr = value.split("[.]"); System.out.printf("%02d-%02d-%04d", Integer.parseInt(valueArr[2]),Integer.parseInt(valueArr[1]),Integer.parseInt(valueArr[0])); } }
1028
์ ์ 1๊ฐ ์ ๋ ฅ๋ฐ์ ๊ทธ๋๋ก ์ถ๋ ฅํ๊ธฐ2
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); long value = scan.nextLong(); System.out.println(value); } }
1029
์ค์ 1๊ฐ ์ ๋ ฅ๋ฐ์ ๊ทธ๋๋ก ์ถ๋ ฅํ๊ธฐ2
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); double value = scan.nextDouble(); System.out.printf("%.11f",value); } }
1030
์ ์ 1๊ฐ ์ ๋ ฅ๋ฐ์ ๊ทธ๋๋ก ์ถ๋ ฅํ๊ธฐ3
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); long value = scan.nextLong(); System.out.println(value); } }
Author And Source
์ด ๋ฌธ์ ์ ๊ดํ์ฌ([JAVA] ์ฝ๋์ 1021 ~1030 ๐ฅ), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://velog.io/@nohriter/JAVA-์ฝ๋์ -1021-1030์ ์ ๊ท์: ์์์ ์ ๋ณด๊ฐ ์์์ URL์ ํฌํจ๋์ด ์์ผ๋ฉฐ ์ ์๊ถ์ ์์์ ์์ ์ ๋๋ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค