|
-
Nov 10th, 2000, 07:01 AM
#1
Thread Starter
Hyperactive Member
I want to convert minutes to hours and minutes (alot of minutes) anyone??
-
Nov 10th, 2000, 07:07 AM
#2
transcendental analytic
Code:
msgbox timeserial(0,100,0)
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Nov 10th, 2000, 07:24 AM
#3
Thread Starter
Hyperactive Member
This works. But when i when it is > 24 hours i get another date only. Im only want to convert for example " 6002 minutes = 100 hours and 2 minutes". Give it a goo again, i know you can.. ;-)
-
Nov 10th, 2000, 07:29 AM
#4
transcendental analytic
ok one more try
hours = int(minutes / 60)
minutesleft = minutes mod 60
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Nov 10th, 2000, 02:13 PM
#5
Thread Starter
Hyperactive Member
I know you could!! You´re one of the best! Thanks alot!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|