반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JWT #토큰 #refreshToken #accessToken #Token #token #localStorage #sessionStorage
- 빡킹독
- React-Query
- 코드스테이츠 #알고리즘 #그리디
- 백준 #적록색약
- RateLimit
- 버블링 #갭쳐링 #이벤트 #JS
- DP #c++
- 플로이드 #c++
- React #effect hook #useEffect
- axios
- #useRef #언제 쓰는데?
- react #useCallback #react Hook
- useState #Hooks
- 백준 #직각삼각형
- raect typescript #react #typescript #styled-component
- rate limit
- donwstream #upstream #origin
- 다익스트라 #파티 #백준
- React #controlled component #비제어 컴포넌트 #제어 컴포넌트
- 노마드 코더 #타입스크립트 #typescript #class
- npm #not being able to find a file #npm install Error
- html entities
- React #Hook rules #Hook 규칙
- React #리액트 이벤트 주기 #리액트 이벤트
- 이친수
- react
- react fragment
- interceptors
- 얕은 복사 #깊은 복사 #shallow copy #deep copy
Archives
- Today
- Total
꿈꾸는 개발자
백준 2577번 C++ 본문
#include<iostream>
using namespace std;
int main()
{
int a, b, c,result, arr[10] = { 0 };
scanf_s("%d %d %d", &a, &b, &c);
result = a * b * c;
while (result != 0) {
arr[result % 10] += 1;
result = result / 10;
}
for (int i = 0; i < 10; i++) {
printf("%d \n", arr[i]);
}
return 0;
}
해당 문제는 배열의 인덱스 활용에 초점을 두고 있다.