[Show all top banners]
Back to: Kurakani General Refresh page to view new replies
 Java/ c++ problem help!
[VIEWED 4450 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 200 days
Recommended Popular Threads Controvertial Threads
TPS Re-registration case still pending ..
tesla stock OMG !!
TPS for Nepal likely to extend next week
Conservative discussions
सालीको चाक
Embassy of Nepal might be able to help extend TPS for Nepal
I hope all the fake Nepali refugee get deported
Those who are in TPS, what’s your backup plan?
Homeland Security revokes temporary status for 532,000 Cubans, Haitians, Nicaraguans and Venezuelans
Venezuela TPS lawuit
ChatSansar.com Naya Nepal Chat
Who is hottest nepali female?
Looking for girl
TPS for Venezuela is terminated, only 60 days extension for transition period
रबि लामिछानेको दाहिने हात ICE को हिरासतमा
ICE kidnapping people off the streets over op eds
TPS of Nepal to be automatically extended for 6 months based on South Sudan decision
Nepal TPS decision
US citizen Petitioning my wife who was out of status when she was in H1B. What to do ?
Democrat lies revealed
Looking for girl
Who is hottest nepali female?
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