글
백준 11654번 아스키코드 ASCII(JAVA, C#)
백준 프로그래밍
2023. 2. 20. 18:11
728x90
SMALL
자바
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int ch = in.next().charAt(0);
System.out.print(ch);
}
}
//////////////////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main(string[] args) {
char number = Convert.ToChar(Console.ReadLine());
int num = Convert.ToInt32(number);
Console.WriteLine(num);
}
}
}
728x90
'백준 프로그래밍' 카테고리의 다른 글
백준 11382번 꼬마 정민 C#(JAVA) (0) | 2023.02.28 |
---|---|
백준 11720번 숫자의 합(JAVA, C#) (0) | 2023.02.20 |
백준 4673번 셀프 넘버(JAVA, C#) (0) | 2023.02.20 |
백준 15596번 정수 N개의 합(JAVA) 함수 (0) | 2023.02.18 |
백준 4344번 평균은 넘겠지(JAVA, C#) %.3f%%\n / 100:F3}% (0) | 2023.02.18 |