如何在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;
}
这是我查找财政年度的代码。我的问题是找出财政年度的剩余天数。