Slide 90
Slide 90 text
public class Hello {
public static void main(String[] args) {
String title = getTitleFromServer(server);
String author = getAuthorFromServer(server);
Str…
printManga(title, author, compa…);
printMangaShort(title, price);
}
public static void printManga(
String title,
String author,
String company,
String bland,
String volumeName,
int price,
String description,
String obi) {
System.out.println(author + "ͷ" + title + volumeName + "! " + company + bland +
“ࣾӡΛ͔͚ͨେ࡞!: \n આ໌ͪ͜Β” + description + obi + “ஈ” + price);
}
public static String getTitleFromServer(Server server) {
server.getTitle()
}
public static String getAuthorFromServer(Server server) {
server.getAuthor()
}
pub…
public static void printMangaShort(
String title,
//String author,
//String company,
//String bland,
//String volumeName,
int price,
//String description,
//String obi
) {
System.out.println(titile + " Ձ֨: " + price);
}
}
·ͱΊΔ