
Explanation of Solution
a.
Program code:
NumbersDemo.java
//define the method NumbersDemo
public class NumbersDemo
{
//define the main() method
public static void main(String args[])
{
//create two integer variable
int n1 = 10;
int n2 = 7;
//call the static methods
displayTwiceTheNumber(n1);
displayNumberPlusFive(n1);
displayNumberSquared(n1);
//print new line
System.out.println();
//call the static methods
displayTwiceTheNumber(n2);
displayNumberPlusFive(n2);
displayNumberSquared(n2);
}
//define the method displayTwiceTheNumber()
public static void displayTwiceTheNumber(int n)
{
//multiply n by 2 and print it
System.out.println(2 * n);
}
//define the method displayNumberPlusFive()
public static void displayNumberPlusFive(int n)
{
//add 5 to n and dispaly it
System...
Explanation of Solution
b.
Program code:
NumbersDemo2.java
//import the package
import java.util.Scanner;
//define the method NumbersDemo
public class NumbersDemo2
{
//define the main() method
public static void main(String args[])
{
//create the object of scanner
Scanner in = new Scanner(System.in);
//prompt the user to enter two numbers
System.out.println("Enter the numbers");
//scan for the values
int n1 = in.nextInt();
int n2 = in.nextInt();
//print new line
System.out.println();
//call the static methods
displayTwiceTheNumber(n1);
displayNumberPlusFive(n1);
displayNumberSquared(n1);
//print new line
System.out.println();
//call the static methods
displayTwiceTheNumber(n2);
displayNumberPlusFive(n2);
displayNumberSquared(n2);
}
//define the method displayTwiceTheNumber()
public static void displayTwiceTheNumber(int n)
{
//multiply n by 2 and print it
System...

Trending nowThis is a popular solution!

Chapter 3 Solutions
EBK JAVA PROGRAMMING
- Please solve and answer the questions correctly please. Thank you!!arrow_forwardConsidering the TM example of binary sum ( see attached)do the step-by-step of execution for the binary numbers 1101 and 11. Feel free to use the Formal Language Editor Tool to execute it; Write it down the current state of the tape (including the head position) and indicate the current state of the TM at each step.arrow_forwardI need help on inculding additonal code where I can can do the opposite code of MatLab, where the function of t that I enter becomes the result of F(t), in other words, turning the time-domain f(t) into the frequency-domain function F(s):arrow_forward
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,EBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage Learning



