[Show all top banners]

bravo1
Replies to this thread:

More by bravo1
What people are reading
Subscribers
:: Subscribe
Back to: Kurakani General Refresh page to view new replies
 Java/ c++ problem help!
[VIEWED 2985 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
What are your first memories of when Nepal Television Began?
TPS Re-registration case still pending ..
निगुरो थाहा छ ??
ChatSansar.com Naya Nepal Chat
Basnet or Basnyat ??
Sajha has turned into MAGATs nest
NRN card pros and cons?
मन भित्र को पत्रै पत्र!
Will MAGA really start shooting people?
Democrats are so sure Trump will win
Top 10 Anti-vaxxers Who Got Owned by COVID
TPS Work Permit/How long your took?
काेराेना सङ्क्रमणबाट बच्न Immunity बढाउन के के खाने ?How to increase immunity against COVID - 19?
Breathe in. Breathe out.
3 most corrupt politicians in the world
Dementia Joe has been selected to become the next President
Trumpism project 2025 everyone should read https://www.project2025.org/
आज बाट तिहारको सेल सकियो
"श्रीमतिको अर्कै संग सम्बन्ध रहेछ "
Nas and The Bokas: Coming to a Night Club near you
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