글
백준 11720번 숫자의 합(JAVA, C#)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int length = sc.nextInt();
int sum = 0;
String str = sc.next();
for(int i = 0;i<length;i++)
{
sum += int.Parse(str.charAt(i)-48);
}
System.out.println(sum);
}
}
///////////
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
br.readLine(); // N 은 쓸모가 없으므로 입력만 받는다.
int sum = 0;
for(byte value : br.readLine().getBytes()) {
sum += (value - '0'); // 또는 (a-48)
}
System.out.print(sum);
}
}
///////////////////////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main(string[] args) {
int length = int.Parse(Console.ReadLine());
int sum = 0;
string str = Console.ReadLine();
for(int i = 0;i<str.Length;i++)
{
sum += int.Parse(str[i].ToString());
}
Console.WriteLine(sum);
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 25314번 코딩은 체육과목 입니다 C#(JAVA) (0) | 2023.02.28 |
---|---|
백준 11382번 꼬마 정민 C#(JAVA) (0) | 2023.02.28 |
백준 11654번 아스키코드 ASCII(JAVA, C#) (0) | 2023.02.20 |
백준 4673번 셀프 넘버(JAVA, C#) (0) | 2023.02.20 |
백준 15596번 정수 N개의 합(JAVA) 함수 (0) | 2023.02.18 |