일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 건담베이스
- java
- Spring
- 연습문제
- DART
- Flutter
- 일본어
- 인프런
- Python
- 자바
- メソッド
- Web
- springboot
- ruby
- CSS
- 비즈니스일본어
- javascript
- html
- rails
- 一日一つメソッド
- C로 시작하는 컴퓨터 프로그래밍4판
- 디지몬
- 日本語
- 単語
- 반다이몰
- nico
- jsp
- vscode
- 건담
- rails7
Archives
- Today
- Total
목록실전예제 (2)
AR삽질러
C로 시작하는 컴퓨터 프로그래밍4판 - 13장 실전예제(면적구하프로그램)
면적 구하기 프로그램 #define _CRT_SECURE_NO_WARNINGS #include #include #include int main(void) { int i = 0, count = 0, nrepeat; double x, y; printf("몇 회 반복할까요? : "); scanf("%d", &nrepeat); for (i = 0; i < nrepeat; i++) { x = (double)rand() / 32767; y = (double)rand() / 32767; if ((x * x + y * y)
C
2023. 6. 22. 08:19
C로 시작하는 컴퓨터 프로그래밍4판 - 13장 실전예제(데이터 정렬 프로그램)
01. 데이터 정렬 프로그램 - 정렬 알고림즘 성능 비교하기 #include #include #include #define MAX_NUM 10000 void Select_Sort(int* a, int count); void Bubble_Sort(int* a, int count); void Insert_Sort(int* a, int count); void Shell_Sort(int* a, int count); void Quick_Sort(int* a, int count); // 난수 발생 함수 void Rand_Date(int* a); int Random(int start, int end); // 속도 비교 함수 void Check_Speed(int num, char* str, int* a, int cou..
C
2023. 6. 22. 08:10