+ 2
Помогите!
Напишите программу, которая принимает строку в качестве входных данных и выводит последний символ строки. https://code.sololearn.com/cRs6Fdc9XkoI/?ref=app
5 Answers
0
https://code.sololearn.com/c2287zq7ImjK/?ref=app
+ 3
Elisey
This is the easyest way to fix it
https://code.sololearn.com/coTMi7FIv4QM/?ref=app
+ 2
Elisey
To get last character do this:
Чтобы получить последний символ, сделайте следующее:
str1 = input()
print(str1[-1:])
+ 2
Elisey
Yes that is also right but if you want to use your first code then you have to do this:
Да, это тоже правильно, но если вы хотите использовать свой первый код, вам нужно сделать это:
str = input()
x = list(str[::-1])
print(x[0])
0
If anyone can't solve this task in Kotlin
But the task was a little different:
you need to accept the input values and print each letter of this value on a new line
fun main(args: Array<String>) {
val name= readLine()
val s = name.toString()
for (num in s){
println(num)
}
}
Если кто не может решить это задание в Котлин
Но задача была немного другая:
нужно принять входные значения и вывести каждую букву этого значения на новую строку