Computers and Technology

HELP ASAP PLEASE

Hey I need to colorize this code, but I have no idea how to can anyone help me ?

SAMPLE CODE:

public class Library {
public static void main (String[ ] args) {
Book brainCandy = new Book(“Hunger Games”, “Suzanne Collins”);
Book nonFiction = new Book(“Guinness World Records 2016”,
“Guinness World Records”);

System. out. println(“What I am reading: “);
System. out. println(brainCandy + “ and “ + nonFiction);
}
}

public class Book {
private String title;
private String author;

public Book(String t, String a) {
title = t;
author = a;
}

public String toString() {
return “Title: “ + title + “ by “ + author;
}
}

[Color key at the picture !]


HELP ASAP PLEASE Hey I need to colorize this code, but I have no idea how to can anyone help me ?  S

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 22:50, prettybaby406
Explain why it is reasonable to assume that receiving 3 duplicate acks in tcp is an indication that the network is not currently congested.
Answers: 1
image
Computers and Technology, 21.06.2019 23:00, zahraa244
Describe in pseudocode an algorithm that given an integer n and a linked list of elements increases the linked list by a factor of n by replacing each element in the original list with n copies of that element. for example, if l: [18, 7, 4, 24, 11] and n = 3 the resulting list should be l: [18, 18, 18, 7, 7, 7, 4, 4, 4, 24, 24, 24, 11, 11, 11]. if the value of n is less than or equal to 0, the list should be empty after the call. what’s the running time of your algorithm?
Answers: 3
image
Computers and Technology, 22.06.2019 18:10, AdoNice
How can i delete permalinks from a word press site?
Answers: 1
image
Computers and Technology, 23.06.2019 13:30, jhitotw
What is the primary difference between the header section of a document and the body? a. the body is displayed on the webpage and the header is not. b. the header is displayed on the webpage and the body is not. c. the tag for the body is self-closing, but the tags for the headers must be closed. d. the tag for the header is self closing, but the tag for the body must be closed.
Answers: 3
Do you know the correct answer?
HELP ASAP PLEASE

Hey I need to colorize this code, but I have no idea how to can anyone...

Questions in other subjects: