class daycheck{
String[] published=new String[100];
int articlenumber;
int[] alyear=new int[100];
int[] almonth=new int[100];
int[] alday=new int[100];
int s;
String str;
String z1,z2,z3,z4,z5;
void makedata(){
for (s=1;s<articlenumber+1;s++){
str=published[s];
z1=str.substring(0,4);
z2=str.substring(5,6);
z3=str.substring(6,7);
z4=str.substring(8,9);
z5=str.substring(9,10);
alyear[s]=Integer.parseInt(z1);
almonth[s]=10*Integer.parseInt(z2)+Integer.parseInt(z3);
alday[s]=10*Integer.parseInt(z4)+Integer.parseInt(z5);
}
}
}
最終更新:2011年04月02日 04:56