RB
rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
age = gets.to_i
case age
when 0
puts "You are a lier"
when 1, 2, 3, 4, 5, 6
puts "impossible too young for coding"
when 7, 8, 9
puts "Good, started coding at right age"
when 10, 11, 12, 13, 14
puts "Keep it up and learn more"
when 15, 16, 17, 18
puts "time for making career in programming"
when 19..32
puts "Hope you finds your career in programming"
when 33..110
puts "coding never stop at any age"
when 111..99999999999999999999999999999
puts "Is your soul wandering here"
else
puts "please input your age in numbers"
end
=begin
this code is possible with the help of
jakopo clark, undefined, mr. coder
=end
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run