본문 바로가기

분류 전체보기34

C 언어 기본 문법 1. 변수와 자료형#include int main() { int x = 10; // 정수형 float y = 3.14; // 실수형 char name[] = "John"; // 문자열 (문자 배열) int isStudent = 1; // 불리언은 C에서 0(false), 1(true)로 표현 printf("x = %d, y = %f, name = %s, isStudent = %d\n", x, y, name, isStudent); return 0;}    2. 조건문#include int main() { int x = 10; if (x > 5) { printf("x는 5보다 큽니다.\n"); } else if (x == 5) { .. 2024. 9. 9.
PHP 기본 문법 1. 변수와 자료형   2. 조건문 5) { echo "x는 5보다 큽니다.";} elseif ($x == 5) { echo "x는 5입니다.";} else { echo "x는 5보다 작습니다.";}?>   3. 반복문for 반복문 while 반복문   4. 배열   5. 함수   6. 클래스name = $name; $this->age = $age; } public function greet() { echo "안녕하세요, 저는 " . $this->name . "이고, 나이는 " . $this->age . "살입니다."; }}$person1 = new Person("철수", 25);$person1->greet(); .. 2024. 9. 9.
Java 기본 문법 1. 변수와 자료형int x = 10; // 정수형double y = 3.14; // 실수형String name = "John"; // 문자열boolean isStudent = true; // 불리언   2. 조건문int x = 10;if (x > 5) { System.out.println("x는 5보다 큽니다.");} else if (x == 5) { System.out.println("x는 5입니다.");} else { System.out.println("x는 5보다 작습니다.");}   3. 반복문for 반복문for (int i = 0; i while 반복문int count = 0;while (count   4. 배열int[] numbers = {1, 2, 3, 4.. 2024. 9. 9.
Python 기본 문법 1. 변수와 자료형# 변수 선언x = 10 # 정수형y = 3.14 # 실수형name = "John" # 문자열is_student = True # 불리언   2. 자료형 확인print(type(x)) # print(type(name)) #   3. 연산자산술 연산자: +, -, *, /, %, ** (제곱), // (몫)비교 연산자: ==, !=, >, , >=, 논리 연산자: and, or, nota = 5b = 3print(a + b) # 8print(a > b) # Trueprint(a == b or a > 2) # True   4. 조건문x = 10if x > 5: print("x는 5보다 큽니다.")elif x == 5: print("x는 5입니다.".. 2024. 9. 9.