일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- centuryFromYear
- Python
- 파이썬 포렌식
- cpp
- shapeArea
- Sequential Search
- All Longest Strings
- codesignal
- recursion
- almostIncreasingSequence
- til
- data_structure
- flask
- collections.deque
- Daily Commit
- adjacentElementsProduct
- C++
- 2015 봄학기 알고리즘
- baekjun
- 2750
- 백준
- Numpy
- 수 정렬하기
- codesingal
- matrixElementsSum
- 10953
- 피보나치 수
- markdown
- Counting cells in a blob
- 파이썬머신러닝완벽가이드
- Today
- Total
목록Doing/C&C++ 34
Introfor
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051__author__ = "introfor"; /*history: 2016/11/30 Starting one-dimension theater reservation system. Finished.*/ #include #define SIZE 10 int main() { char c = 0; int place = 0; int theater[SIZE] = { 0 }; while (1) { printf("극장 좌석 예약 하시겠습니까?(y/n)"); scanf_s("%c", &c); if (c == 'y') { printf("예매가능좌석\n"); pri..
2~9단 구구단을 아래와 같은 패턴으로 출력하시오.12345678910111213141516171819202122#include int main() { int i = 2, j = 1; while (1) { printf("%d * %2d = %2d ", i, j, i*j); i++; if (i == 10) { printf("\n"); i = 2; j++; } if (j == 10) break; } return 0;}Colored by Color Scriptercs
어떤 수 n을 입력 받아서 대각선 길이가 n인 숫자마름모를 출력하시오.ex) n=412345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455#include int main() { int n = 0; // 입력받는 변수 int m = 1; // 배열에 대입할 변수 int tmp = 0; // n 값 저장. 반복출력문에 활용 int x, y; // 배열 위치 지정 int arr[100][100] = { 0 }; scanf("%d", &n); tmp = n; n--; // n-1번째부터 시작하기 위해서 x = 0, y = n; // 배열 초기 위치 지정. while (n > 0) { fo..
키와 몸무게를 정수로 입력받고, 표준체중을 계산하여, "저체중", "표준", "과체중" 인지를 판단하는 프로그램을 작성하라. 표준체중을 계산하기 위한 조건은 아래와 같다.1) 표준체중 = (키- 100) * 0.9 2) 표준 체중의 +10% 이하, -10% 이상의 체중일 경우 "표준" 3) +10% 초과의 체중일 경우 "과체중" 4) -10% 미만의 체중일 경우 "저체중"실행결과 1 키와 몸무게를 입력하세요: 180 80 과체중입니다.실행결과 2 키와 몸무게를 입력하세요: 170 52 저체중입니다.실행결과 3 키와 몸무게를 입력하세요: 175 72 표준입니다.123456789101112131415161718192021222324252627#include int main() { int height = 0,..