[Show all top banners]
Back to: Kurakani General Refresh page to view new replies
 Java/ c++ problem help!
[VIEWED 4432 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 60 days
Recommended Popular Threads Controvertial Threads
Conservative discussions
Homeland Security revokes temporary status for 532,000 Cubans, Haitians, Nicaraguans and Venezuelans
Venezuela TPS lawuit
ICE kidnapping people off the streets over op eds
US citizen Petitioning my wife who was out of status when she was in H1B. What to do ?
#MAGA#FAFO is delicious
TPS of Nepal to be automatically extended for 6 months based on South Sudan decision
Nepal TPS decision
What is the purpose of an F1 student visa in the U.S.?
Measles vax deaths vs measles death in USA
Please ask KRISTI NOEM in her facebook and other social media to renew TPS
Don’t Just Read—Join the Conversation
महँगो अण्डाको पिकल्प : कुखुरा र खोर भाडामा लिने
Nepal TPS
MLS AND LIVE SOCCER MATCH FREE SITE THAHA CHA?
Freedom of speech is dead in USA
Whatever happening in airport are illegal and should stop ? What are these immigration lawyers doing ?
Travelling to Nepal with expiration less than 6 months
Homeowner Charged renting to illegal migrants
USCIS to Check Social Media Posts of Green Card Applicants Legally Residing in US
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