What's wrong?
package com.codegym.task.task01.task0132;
/*
Sum of the digits of a three-digit number
*/
;
public class Solution {
public static void main(String[] args) {
System.out.println(sumDigitsInNumber(546));
}
public static int sumDigitsInNumber(int number) {
int s = 0;
while(number > 0) {
s = s + number % 10;
number = (int) number / 10;
}
return s;
}
}