わかりました...だから私は多くの試行錯誤をしました...そして、usFormatメソッドをメインに呼び出すことができないようで、全体をかなり台無しにしてしまったと思います笑..何か助けていいだろう。ただ...初心者レベルでお願いします。
class Date {
String date;
String day;
String month;
String year;
StringTokenizer st;
Scanner sc = new Scanner (System.in);
//instance vars go here
public Date (String date){
while (sc.hasNextLine()) {
st = new StringTokenizer (sc.nextLine());
this.month = st.nextToken();
this.day = st.nextToken();
this.year = st.nextToken();
}
} //end constructor
public String usFormat () {
return month + " " + day + "," + year;
} //end usFormat
public String euFormat () {
return null;
} //end euFormat
public static void main (String[] args){
Date usFormat = new Date (date);
}
}