class Mianshi{ public static void getDays(int days){ int week=days/7; int residue=days%7; System.out.println("Ò»¹²"+week+"ÖÜ"+residue+"Ìì"); } }