-6

Javaで現在の会計年度の残高日数を見つける方法。たとえば、3月31日までのバランス日。

if(Integer.parseInt(currentmonth)<4){
    currentyears=Integer.parseInt(currentyear)-1;
    finMonth=Integer.parseInt(currentmonth)+9;
    remainMonth=12-finMonth;        
}else{  
    currentyears=Integer.parseInt(currentyear);
    finMonth=Integer.parseInt(currentmonth)-3;
    remainMonth=12-finMonth;
}

これは、会計年度を見つけるための私のコードです。私の問題は、会計年度の残りの日数を見つけることです。

4

1 に答える 1

1

これがあなたが始めるための何かです:

import java.util.Calendar;

public class DaysLeft {
    public static void main(String args[]) {
        Calendar cal = Calendar.getInstance();

        int max_days = cal.getMaximum(Calendar.DAY_OF_YEAR);
        int today = cal.get(Calendar.DAY_OF_YEAR);
        int days_left = max_days - today;

        System.out.format("We have a maximum of %d days this year.\n", max_days);
        System.out.format("Today is day number %d.\n", today);
        System.out.format("That means we have %d days left this year.\n",days_left);
    }       
}

1年の日数、今日の日、および1年の残り日数を計算します。もちろん、ニーズに合わせて調整する必要があります。幸運を!

于 2012-10-03T07:17:11.743 に答える