C언어에서 연산자는 데이터를 처리하고 값을 계산하는 데 사용되는 기호입니다. 다양한 종류의 연산자가 있으며, 각 연산자는 특정한 작업을 수행합니다.
#include <stdio.h>
int main() {
int a = 10, b = 3;
printf("a + b = %d\n", a + b);
printf("a - b = %d\n", a - b);
printf("a * b = %d\n", a * b);
printf("a / b = %d\n", a / b);
printf("a %% b = %d\n", a % b);
return 0;
}
#include <stdio.h>
int main() {
int num1, num2, sum;
printf("첫 번째 숫자를 입력하세요: ");
scanf("%d", &num1);
printf("두 번째 숫자를 입력하세요: ");
scanf("%d", &num2);
sum = num1 + num2;
printf("%d + %d = %d\n", num1, num2, sum);
return 0;
}
#include <stdio.h>
int main() {
int x = 10, y = 20;
printf("x == y: %d\n", x == y);
printf("x != y: %d\n", x != y);
printf("x > y: %d\n", x > y);
printf("x < y: %d\n", x < y);
printf("x >= y: %d\n", x >= y);
printf("x <= y: %d\n", x <= y);
return 0;
}
#include <stdio.h>
int main() {
int age = 20;
if (age >= 18) {
printf("성인입니다.\n");
}
return 0;
}
#include <stdio.h>
int main() {
int a = 10, b = 20;
printf("a > 5 && b < 30: %d\n", a > 5 && b < 30);
printf("a < 5 || b > 15: %d\n", a < 5 || b > 15);
printf("!(a == b): %d\n", !(a == b));
return 0;
}
#include <stdio.h>
int main() {
int age;
char gender;
//20세 여성에게만 쿠폰을 발행
printf("나이와 성별을 입력하세요 (예: 20 F): ");
scanf("%d %c", &age, &gender);
if (age == 20 && gender == 'F') {
printf("쿠폰 발행!\n");
} else {
printf("쿠폰 발행 대상이 아닙니다.\n");
}
return 0;
}
#include <stdio.h>
int main() {
int x = 10;
printf("x++: %d\n", x++); // 먼저 사용 후 증가
printf("x: %d\n", x);
printf("++x: %d\n", ++x); // 먼저 증가 후 사용
return 0;
}
for (int i = 0; i < 10; i++) {
printf("%d ", i);
}
int i = 0;
while (i < 10) {
printf("%d ", i++);
}
#include <stdio.h>
int main() {
int a = 10;
a = a + 5; // a에 5를 더한 값을 다시 a에 할당
printf("a = %d\n", a);
return 0;
}
컴퓨터 속의 작은 상자, 변수! (0) | 2024.08.15 |
---|---|
C언어 자주 사용하는 코딩용어 및 특수문자 이름 (1) | 2024.08.15 |
기본 문법 기호를 넘어서, 더 알아야 할 코딩 용어들 (0) | 2024.08.15 |
c언어 컴퓨터로 입력받기 scanf (0) | 2024.08.14 |
C_언어 역사 와 활용 분야 : Why C language? (0) | 2024.08.14 |