1021 //1021번 문제 Scanner Input = new Scanner(System.in); char[] data = Input.next().toCharArray(); System.out.print(data); 1022 //1022번 문제 Scanner Input = new Scanner(System.in); char[] data = Input.nextLine().toCharArray(); System.out.print(data); 1023 //1023번 문제 Scanner Input = new Scanner(System.in); String[] str = Input.nextLine().split("\\."); int x = Integer.parseInt(str[0]); int y = Intege..
1001 System.out.print("Hello"); 1002 System.out.print("Hello World"); 1003 System.out.printf("Hello%nWorld"); 1004 System.out.printf("\'Hello\'"); 1005 System.out.printf("\"Hello World\""); 1006 System.out.printf("\"!@#$%%^&*()\""); 1007 System.out.printf("\"C:\\Download\\hello.cpp\""); 1008 System.out.printf("\u250C\u252C\u2510"); System.out.println(); System.out.printf("\u251C\u253C\u2..
목록 IPFS-#1.IPFS 사용법(CLI,Ubuntu) IPFS-#2.IPFS 사용법(nodejs,Ubuntu) IPFS 사용법 IPFS를 javascript로 nodejs에서 실행해본다. ipfs-api 모듈 설치 sudo npm install -save ipfs-api ipfs 연결 const ipfsAPI = require('ipfs-api'); const ipfs = ipfsAPI('192.168.0.8' ,'5001', {protocol: 'http'}) ipfs.add() ipfs.add()는 파일을 ipfs에 보내기위한 함수이다. 먼저 ipfs_upload_testfile.txt 라는 파일에 "hello world"내용을 적는다. echo "hello world" > ipfs_upload_..