분류 전체보기 (426) 썸네일형 리스트형 Aracade Intro #2 CenturyFromYear Calculate century from year연도를 입력받고 세기를 계산한다 // Process//1. Input year//2. Divide year by 100//3. If it doesn't have remainder -> quotient is century// 3.1. If it has remainder -> quotient + 1 is century//4. Output century // 처리과정//1. 연도를 입력받는다.//2. 연도를 100으로 나눠본다.//3. 나누어 떨어지면 몫(100단위)이 세기// 3.1. 나머지가 있으면 몫 + 1 이 세기//4. 세기를 출력한다. int centuryFromYear(int year) { int quotient = year / 100; int re.. Aracade Intro #1 Add 코드파이트 때 부터 아케이드 인트로 부분 C++로 푼 내용What I solved in CodeFights(CodeSignal) using C++ #1 int add(int param1, int param2) { return param1 + param2;} 이전 1 ··· 51 52 53 54 다음