일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Web
- 一日一つメソッド
- 연습문제
- 인프런
- vscode
- C로 시작하는 컴퓨터 프로그래밍4판
- javascript
- 日本語
- 일본어
- 디지몬
- DART
- html
- 자바
- rails7
- Python
- rails
- CSS
- 비즈니스일본어
- メソッド
- nico
- Flutter
- jsp
- springboot
- 반다이몰
- ruby
- 건담
- 건담베이스
- Spring
- java
- 単語
Archives
- Today
- Total
목록면적구하기프로그램 (1)
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