일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- C
- 종만북
- Algospot
- Math
- php
- JavaScript
- 인프런
- udemy
- server
- greedy
- Algorithm
- 따배씨
- 정수론
- BFS
- programmers
- sorting
- BOJ
- 백준
- dfs
- String
- Cleancode
- C언어
- web
- BASIC
- 생활코딩
- 따라하면서 배우는 C언어
- DP
- graph
- 따라하며 배우는 C언어
- Python
- Today
- Total
목록따라하면서 배우는 C언어 (121)
몽상실현개발주의
따배씨 - 따라하며 배우는 C언어 7강 분기 7.6 소수 판단 예제 #include #include int main(){ unsigned num; bool isPrime = true; scanf("%u", &num); for (int div = 2; div < num; ++div){ if (num % div == 0){ isPrime = false; } } if(isPrime){ printf("%u is a Prime number\n", num); } else{ printf("%u is not a Prime number\n", num); } return 0; } 소수 판단 #include #include int main(){ unsigned num; bool isPrime = true; scanf("%u..
따배씨 - 따라하며 배우는 C언어 7강 분기 7.4 다중선택 else if #include // assessment stansard tax base #define BASE1 12000000.0 #define BASE2 46000000.0 #define BASE3 88000000.0 #define BASE4 150000000.0 #define BASE5 300000000.0 #define BASE6 500000000.0 // percent to rate #define RATE1 (6.0 / 100.0) #define RATE2 (15.0 / 100.0) #define RATE3 (24.0 / 100.0) #define RATE4 (35.0 / 100.0) #define RATE5 (38.0 / 100.0)..
따배씨 - 따라하며 배우는 C언어 7강 분기 7.4 다중선택 else if #include // assessment stansard tax base #define BASE1 12000000.0 #define BASE2 46000000.0 #define BASE3 88000000.0 #define BASE4 150000000.0 #define BASE5 300000000.0 #define BASE6 500000000.0 // percent to rate #define RATE1 (6.0 / 100.0) #define RATE2 (15.0 / 100.0) #define RATE3 (24.0 / 100.0) #define RATE4 (35.0 / 100.0) #define RATE5 (38.0 / 100.0)..
따배씨 - 따라하며 배우는 C언어 7강 분기 7.2 표준 입출력 함수들 getchar(), putchar() 한 글자 씩, 입/출력 #include int main() { char ch; // int ch; 도 가능 ch = getchar(); putchar(ch); return 0; } getchar() - 한 글자를 입력받아 아스키 코드값을 리턴 putchar() - 아스키 코드 값을 입력받아 문자 하나를 출력 #include int main() { char ch; while ((ch = getchar()) != '\n') { putchar(ch); } putchar(ch); return 0; } getchar() 와 putchar()를 사용하였지만, 입력받은 문자열을 한번에 출력 입력 종료를 의미하..
따배씨 - 따라하며 배우는 C언어 7강 분기 7.1 분기문 Branching Statement if 분기문 : 조건에 따라 다른 명령을 실행 if (expression) { Statement } #include int main() { unsigned int number = 0; printf("Input a positive integer : "); scanf("%d", &number); if (number % 2 == 0) printf("Even\n"); if (number % 2 != 0) printf("Odd\n"); return 0; } if (expression) { Statement1 } else { Statement2 } if else #include int main() { unsigned in..
따배씨 - 따라하며 배우는 C언어 6강 반복문 6.17 for 루프를 배열과 함께 사용하기 #include #define SIZE 5 int main() { int my_array[SIZE]; for (int i = 0; i < SIZE; i++) my_array[i] = i; for (int i = 0; i < SIZE; i++) printf("%d\n", my_array[i]); // 0 // 1 // 2 // 3 // 4 return 0; } #include #define SIZE 5 int main() { int enter_nums[SIZE], sum = 0, i; printf("Enter %d numbers : ", SIZE); for (i = 0; i < SIZE; i++){ scanf("%d..
따배씨 - 따라하며 배우는 C언어 6강 반복문 6.17 for 루프를 배열과 함께 사용하기 #include #define SIZE 5 int main() { int my_array[SIZE]; for (int i = 0; i < SIZE; i++) my_array[i] = i; for (int i = 0; i < SIZE; i++) printf("%d\n", my_array[i]); // 0 // 1 // 2 // 3 // 4 return 0; } #include #define SIZE 5 int main() { int enter_nums[SIZE], sum = 0, i; printf("Enter %d numbers : ", SIZE); for (i = 0; i < SIZE; i++){ scanf("%d..
따배씨 - 따라하며 배우는 C언어 6강 반복문 6.16 배열 Array 과 런타임 에러 Runtime error #include #define NUM_DAYS 365 int main() { char my_chars = "Hello, World!"; int daily_temperature[NUM_DAYS]; double stock_prices_history[NUM_DAYS]; printf("%zd\n", sizeof(stock_prices_history)); // 2920 printf("%zd\n", sizeof(double) * NUM_DAYS); // 2920 printf("%zd\n", sizeof(stock_prices_history[0])); // 8 return 0; } #include int ..