[SWEA-D1] C++ 2058. 자릿수 더하기

민지·2023년 5월 18일
0

SWEA

목록 보기
6/23
post-custom-banner
#include<iostream>
using namespace std;

int main(int argc, char** argv)
{
	int N;
	cin>>N;
    int result = 0;
    
	for(int i=0; i<4; i++)
	{
        result += N%10;
        N /= 10;
	}
    cout << result;
    
	return 0;
}
profile
개발일지

0개의 댓글