일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- Implemention
- implement
- 심화1
- 문자열
- 정리
- 코드엔진
- Baekjoon
- C
- C 언어
- c언어
- 10926
- 문제풀이
- 구현
- 입문
- 초보
- 그리디
- 꾸준히
- 설명
- 10807
- 친절한 설명
- Beakjoon
- Python
- 파이썬
- VS
- C Programming
- greedy
- HTML
- 알고리즘
- CSS
- Today
- Total
목록꾸준히 (86)
안경잡이 구루루
나: #include int main() { int N; scanf("%d", &N); for(int i = N; i >= 1; i=i-1) printf("%d\n", i); return 0; } 완성된 코드는 위와 같다. #include int main() { int N; scanf("%d", &N); N 부터 출력할 자료형을 선언하고 scnaf 함수로 사용자 입력값을 받는다. for(int i = N; i >= 1; i=i-1) printf("%d\n", i); return 0; } 2020/05/21 - [C언어(C programming)/문제풀이(백준,BaekJoon)] - 백준 2741 ( N 찍기 ) [ C programming ] 위 문제와 달리 거꾸로 N부터 1까지 출력하는게 문제 핵심이다..
나: #include int main() { int N; scanf("%d", &N); for (int i = 1; i
https://www.acmicpc.net/problem/15552 나: #include int main() { int t, a, b; scanf("%d", &t); for (int i = 0; i < t; i++) { scanf("%d %d", &a, &b); printf("%d\n", a + b); } return 0; } 완성된 코드는 위와 같다. 위의 문제에서 시간초과를 우려해서 조언한 것은 C언어에는 해당이 되지 않기 때문에 원래 자기방식대로 사용해도 됨 #include int main() { int t, a, b; scanf("%d", &t); 먼저 반복할 횟수 테스트케이스(t) 와 입력값으로 받을 a, b 의 자료형을 선언한다. 이후 t 를 scanf 함수로 사용자 입력값을 받는다. for ..