返回列表 發帖
[code][/code]package a01;

public class a01 {

        public static void main(String[] args) {
                String str1="dog", str2="cat";
        int x=3, y=5;
        System.out.printf("There are %d %ss and %d %Ss.",x,str1,y,str2);
        }

}

TOP

返回列表