문자와 문자열 (27866)

Created:

Baekjoon No.27866 문제
주어진 문자열에서 n번째 알파벳을 출력하라.

Bash

Bash
1
2
3
read str
read n
echo "${str:$n-1:1}"

Node.js

JavaScript
1
2
const [str, n] = require("fs").readFileSync(0).toString().trim().split("\n");
console.log( str[n*1-1] );

Python3

Python
1
2
3
text = input()
n = int(input())
print( text[n-1] )

Ruby

Ruby
1
2
3
str = gets.chomp
n = gets.chomp.to_i
puts str[n-1]