数値桁数の追加
3604 ワード
質問する
コード1(小数点以下の重複文)
#include <bits/stdc++.h>
using namespace std;
int solution(int n)
{
int answer = 0;
while (n != 0)
{
answer += n % 10;
n /= 10;
}
return answer;
}
コード2(stringに変更)
#include <bits/stdc++.h>
using namespace std;
int solution(int n)
{
int answer = 0;
string temp = to_string(n);
for (int i = 0; i < temp.size(); i++)
{
answer += (int)temp[i] - '0';
}
return answer;
}
Reference
この問題について(数値桁数の追加), 我々は、より多くの情報をここで見つけました https://velog.io/@aksel26/자릿수-더하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol