Computer Networking: A Top-Down Approach (7th Edition)
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Bartleby Related Questions Icon
Related questions
Question
Create a boolean array in java. Generate n, random integers between 1 and 50 and for the false(odd) integers print "-". For the true(even) integers print "+."
For example,
input: 5
output: - + - - +
Expert Solution
Check Markarrow_forward
Step 1
import java.util.Arrays;
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Boolean[] bool_Array = new Boolean[100]; // initialize a boolean array
Scanner sc = new Scanner(System.in);
System.out.print("Enter your Output: ");
int n=sc.nextInt();
for(int i = 0; i < n; i++) {
if(i%2==0) System.out.print("-");
else System.out.print("+");
}
}
}
bartleby
Step by stepSolved in 2 steps with 1 images
Knowledge Booster
Background pattern image
Similar questions
- input = unknown amount of positive integers output = the second smallest number It has to be done in Java. I can't use array. Use of; -for loops -while without hasNext()-while with hasNext() -do-whilearrow_forwardYou are give an array which contains the following integers : 9, 10, 12, 15, 7, 2, 1, 16, 18, 5, 6. Write a java program that will give you the product of this arrayarrow_forwardQuestion Write Java code to do the following: Read from the keyboard an unknown number of values each of which is between 1 and 100. If a number entered is not between 1 and 100 (except for -1 which ends the input) print an error message. When a -1 is read in, stop the loop and print which of the numbers between 1 and 100 were not read in. (Hint: Use a boolean or counter array to keep track)arrow_forward
- Java Program to Print Elements Which Occur Odd Number of Times. Given an array of integers, print all the elements whose frequency are odd. Example: Array = [5, 4, 4, 2, 1] Output: 5 2 1.arrow_forwardGiven an array below, write a Java program to take input an integer n from the user and print the "True" or "False" depending upon the number n is present twice in the array or not. int [Jarr = {12,-67,13, 15, 12, 15, -67, 0, 1,1}arrow_forwardUse your imagination to come up with a situation where you can write a program that contains if, a loop (for loop or while loop), and an array. And write this program. Using java programmingarrow_forward
- Write a java program that reads the integers between 1 and 10 and counts the occurrences of each. Assume the input ends with 0. Use an array to keep track of occurrences. (See RollDice program for similar problem.) Here is a sample run of the program: Enter the integers between 1 and 10: 1 3 5 4 2 1 7 8 4 4 2 1 0 1 occurs 3 times 2 occurs 2 times 3 occurs 1 time 4 occurs 3 times 5 occurs 1 time 7 occurs 1 time 8 occurs 1 timearrow_forwardPlease write in Javaarrow_forwardI could really use some help with a problem I got for coding. A screenshot showing an example would help.arrow_forward
- Solve by javaarrow_forwardWrite a Java program DigitsInOrder that reads a four-digit integer from the user, and then displays it one digit per line. For example, assume the user enters 1234 (one thousand two hundred and thirty-four), then your program will display: 1 2 3 4 (USE JAVA.MATH SOLUTIONS, NOT IF STATMENTS OR LOOPS OR ARRAYS)arrow_forwardThis is needed in Javaarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Text book imageComputer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONText book imageComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceText book imageNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Text book imageConcepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningText book imagePrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationText book imageSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY
Text book image
Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON
Text book image
Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science
Text book image
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning
Text book image
Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning
Text book image
Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education
Text book image
Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY