Yurttas/PL/SL/ruby/F/02/06/01/d 04.rb
Jump to navigation
Jump to search
1#
2# Copyright(C) 2008
3# All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4#
5# Permission to use, copy, modify, and distribute this
6# software and its documentation for EDUCATIONAL purposes
7# and without fee is hereby granted provided that this
8# copyright notice appears in all copies.
9#
10# date : June 1, 2008.
11# author : Salih Yurttas. Jackson Booth.
12#
13# d_04.rb
14#
15
16class Order
17 First = 0
18 Second = 1
19 Third = 2
20end
21
22print "--> i : "
23
24i = gets.to_i
25
26print "i = "
27
28case i
29 when Order::First:
30 print i, "\n"
31 when Order::Second:
32 print i+2, "\n"
33 when Order::Third:
34 print i+4, "\n"
35 else
36 print i+8, "\n"
37end