https://swexpertacademy.com/main/code/problem/problemDetail.do
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
String str;
str = sc.nextLine();
int sum=0;
for(int i=0;i<str.length();i++){
sum+=(int)str.charAt(i)-'0';
}
System.out.println(sum);
}
}
'알고리즘 > 삼성 SW expert Academy' 카테고리의 다른 글
[SWEA] 2027. 대각선 출력하기_JAVA (0) | 2022.05.04 |
---|---|
[SWEA] 2063. 중간값 찾기_JAVA (0) | 2022.05.04 |
[SWEA] 2056. 연월일 달력_JAVA (0) | 2022.05.04 |
[SWEA] 2050. 알파벳을 숫자로 변환_JAVA (0) | 2022.05.04 |
[SWEA]1926. 간단한 369게임_JAVA (0) | 2022.05.03 |