전체 글 (17) 썸네일형 리스트형 라즈베리파이 4 설치하기(Installing Raspberry Pi 4) <KOR/ENG> 라즈베리파이를 설치하는데 꽤 복잡하지만 크게 3 가지의 단계로 나눌 수 있습니다. Installing Raspberry Pi process is pretty complicated but it can be divided into 4 big phases. 1. 라즈베리파이 운영체제를 다운 받고 SD카드에 쓰기 1. Download Raspberry Pi OS and write on SD card 2. 라즈베리파이를 인터넷과 연결하고 아이피 주소를 찾아 Putty와 연결 시키는 것 2. Connect Raspberry Pi with internet to find IP address and connect with Putty 3. Putty에 연결한 라즈베리파이의 설정을 조작해 VNC를 통해서 GUI로 실행시키는.. [Python] 입력과 출력 보호되어 있는 글입니다. [JAVA] Constant & Literal 상수 변하지 않는 값 (↔변수: 변하는 값) 상수 선언 final 키워드를 사용 final double PI = 3.14; final int MAX_NUM = 100; 이전에 final로 선언된 함수는 초기화 하거나 새로운 값을 대입할 수 없다. 프로그램 내에서 변경되지 말아야 하는 값을 상수로 선언 해 두고 혹시 변경 되는 경우, 선언 값만 변경하면 된다. 예시 package binary; public class Constant { public static void main(String[] args) { final int MAX_NUM = 100; final double PI = 3.14; } } 리터럴(Literal) 프로그램에서 사용하는 모든 숫자, 값, 논리 값 ex) 10, 3.14, a, Tr.. [JAVA] double & float Variable package binary; public class DoubleEx { public static void main(String[] args) { double dNum = 3.14; float fNum = 3.14F; /*여기서 float에 그냥 3.14라고 작성하면 오류가 나는 것은 * double은 8바이트이지만 float는 4바이트이기 떄문에 * 크기의 차이가 난다. 따라서 float형으로 고치도록 하는 F를 * 대입 값 뛰에 작성한다.*/ } } [JAVA] char Variable package binary; public class VariableEx { public static void main(String[] args) { char ch = 'A'; System.out.println(ch); System.out.println((int)ch); ch = 66; System.out.println(ch); int ch2 = 67; System.out.println(ch2); System.out.println((char)ch2); } } Getting Started with Big Data Processing 보호되어 있는 글입니다. 생각나는대로 적어보는 각 언어별 차이 1. 출력 함수(print) 1-1. C printf("Hello, World!"); 1-2. Python print("Hello, World!") 1-3. JAVA System.out.println("Hello, World!"); [Python] 제어문 보호되어 있는 글입니다. 이전 1 2 3 다음