Results 1 to 3 of 3
- 10-23-2012, 10:07 PM #1
Member
- Join Date
- Oct 2012
- Posts
- 1
- Rep Power
- 0
Calculation of years, months and days
i new to java and i have my code here..all i have to do is that i want to receive the correct years and months.if months is equal to 12months than that should be 1 year..if its 14 months 30 days than that should be 3 years 1 months..as well for my days to..
the format for display looks ok but my calculation still wrongs
my code is something like this.
Public Function NaturalLength(length As Integer ) As String
'days 0 - 60
' months 61 - 730
' years 731plus
dim length1 As string=0
dim length2 As string=0
dim length3 As string=0
If length = 0 then
Return String.Empty
end if
if length >= 731
length1=cstr(Math.Floor (length / 12))
length =(length Mod 12)
end if
If length > 60 AndAlso length < 731 Then
length2 =cstr(Math.Floor(length %12 ))
length =length % 12
end if
if length < 61 Then
length3 =cstr(length)
End If
Return (length1+" Years " +length2+ " Months " +length3 + " days")
End Function
thanks in advanceLast edited by Koviko; 10-23-2012 at 10:08 PM. Reason: uncomplete
- 10-23-2012, 10:29 PM #2
Member
- Join Date
- Oct 2012
- Posts
- 32
- Rep Power
- 0
Re: Calculation of years, months and days
This is visual basic code and you're in a Java programming forum.
- 10-24-2012, 03:58 AM #3
Similar Threads
-
number of the days (-) days gone past
By sh4rif in forum New To JavaReplies: 4Last Post: 05-22-2012, 01:17 PM -
printing out months
By droidus in forum New To JavaReplies: 2Last Post: 04-12-2011, 08:14 PM -
Somebody please help me! You must know how! This has been plauging me for months!
By I Want To Kill Java in forum Forum LobbyReplies: 2Last Post: 12-29-2010, 06:30 AM -
im very new to java need help with taking years and turning it into days, hours, etc.
By mrnoahf in forum New To JavaReplies: 3Last Post: 08-11-2009, 12:18 AM -
Displaying 12 calendar months?
By jaydubya in forum New To JavaReplies: 3Last Post: 09-16-2008, 06:28 AM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks