[Show all top banners]
Back to: Kurakani General Refresh page to view new replies
 Java/ c++ problem help!
[VIEWED 3389 TIMES]
SAVE! for ease of future access.
Posted on 10-30-11 1:00 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

Hi java/ c++ geeks out there,
I need some help on below problem (can use java or c++):

Finish the returnTotalDays method in the CalDate class given below.
returnTotalDays returns one of the following.

I.  the number of days in the given month if (year>0 and month>=1 and month<=12);
II.  the number of days in the given year if year>0 and month is 0; or
III. -1 if year<=0 or the month is not in the range of 0..12

public class CalDate {
public static int returnTotalDays(int year, int month) {

}
}

Thank you for your help!!

Last edited: 30-Oct-11 05:18 PM

 
Posted on 11-04-11 3:30 PM     [Snapshot: 148]     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

import java.util.Calendar;
class CalDate {
    public static int returnTotalDays(int year, int month) {
        if(year < 0 || (month < 0 || month > 11)){
            return -1;
        }
        else
        {
           Calendar c1 = Calendar.getInstance();
           /* remember 0 in the month field always represents january
            */
           c1.set(year, month, 3);
 
           if(month > 0){
               return c1.getActualMaximum(Calendar.DAY_OF_MONTH);
           }
           else {
               return c1.getActualMaximum(Calendar.DAY_OF_YEAR);
           }
        }
    }
 
    // method main(): ALWAYS the APPLICATION entry point
    public static void main (String[] args) {
       //System.out.println ("Hello World!");
       System.out.println (returnTotalDays(2004, 0));
 
    }
}
 

 


Please Log in! to be able to reply! If you don't have a login, please register here.

YOU CAN ALSO



IN ORDER TO POST!




Within last 90 days
Recommended Popular Threads Controvertial Threads
TPS Re-registration case still pending ..
Anybody gotten the TPS EAD extension alert notice (i797) thing? online or via post?
Toilet paper or water?
ChatSansar.com Naya Nepal Chat
Mamta kafle bhatt is still missing
ढ्याउ गर्दा दसैँको खसी गनाउच
Tourist Visa - Seeking Suggestions and Guidance
Ajay Kumar Dev sentenced to 378 yrs
Problems of Nepalese students in US
Nepali Passport Renewal
Biden out, Trump next president, so what’s gonna happen to TPS, termination?
Are Nepalese cheapstakes?
wanna be ruled by stupid or an Idiot ?
Sajha Poll: Who is your favorite Nepali actress?
अरुणिमाले दोस्रो पोई भेट्टाइछिन्
seriously, when applying for tech jobs in TPS, what you guys say when they ask if you have green card?
MAGA denaturalization proposal!!
Biden formally Stands Down!!!
Nepali Psycho
advanced parole
NOTE: The opinions here represent the opinions of the individual posters, and not of Sajha.com. It is not possible for sajha.com to monitor all the postings, since sajha.com merely seeks to provide a cyber location for discussing ideas and concerns related to Nepal and the Nepalis. Please send an email to admin@sajha.com using a valid email address if you want any posting to be considered for deletion. Your request will be handled on a one to one basis. Sajha.com is a service please don't abuse it. - Thanks.

Sajha.com Privacy Policy

Like us in Facebook!

↑ Back to Top
free counters