aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH_Konishi <H_Konishi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-06 11:14:04 +0000
committerH_Konishi <H_Konishi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-06 11:14:04 +0000
commit96654ce04102a8d7337c56ef635cfaca7f0caffe (patch)
treee6f22d10090e9d39e95a2e1520d762241ecbd00f
parent564edcce1817c52b0e8ec5d282896d68bca35d70 (diff)
downloadruby-96654ce04102a8d7337c56ef635cfaca7f0caffe.tar.gz
* sample/biorhythm.rb (getPosiiton,etc)
fix at changing Date module ( Date is changed Fixnum to Rational ) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2530 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--sample/biorhythm.rb3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 10eaa11ce4..d895ae52ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jun 6 19:50:39 2002 KONISHI Hiromasa <H_Konishi@ruby-lang.org>
+
+ * sample/biorhythm.rb (getPosiiton,etc)
+ fix at changing Date module ( Date is changed Fixnum to Rational )
+
Thu Jun 6 12:04:30 2002 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub (config.status): use sub! instead of []= because
diff --git a/sample/biorhythm.rb b/sample/biorhythm.rb
index a139eed6c0..8fc08c6912 100644
--- a/sample/biorhythm.rb
+++ b/sample/biorhythm.rb
@@ -51,6 +51,7 @@ end
def getPosition(z)
pi = Math::PI
+ z = Integer(z)
phys = (50.0 * (1.0 + sin((z / 23.0 - (z / 23)) * 360.0 * pi / 180.0))).to_i
emot = (50.0 * (1.0 + sin((z / 28.0 - (z / 28)) * 360.0 * pi / 180.0))).to_i
geist =(50.0 * (1.0 + sin((z / 33.0 - (z / 33)) * 360.0 * pi / 180.0))).to_i
@@ -142,7 +143,7 @@ else
print " Bad Condition | Good Condition\n"
print " -------------------------+-------------------------\n"
- for z in (dd - bd)..(dd - bd + display_period)
+ (dd - bd).step(dd - bd + display_period) do |z|
phys, emot, geist = getPosition(z)
printf "%04d.%02d.%02d : ", dd.year, dd.month, dd.day