Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Assignment Requirements - Create a new Java Project in your Eclipse workspace named as before, smith3 or jones 3 for example. - Create a package
Assignment Requirements - Create a new Java Project in your Eclipse workspace named as before, smith3 or jones 3 for example. - Create a package with the very same name as your project name. - In this one package, write one Java program for each exercise as required below. - Adhere to naming conventions for variables and classes as in section 2.8. - Choose descriptive variable names and identifiers in all programs. - Start each program with your name and SPC ID\# in a comment. - Add a few more comments in each program to explain what your code is doing. - When all programs are done, locate your project folder in your workspace. - Right-click on the project folder folder (don't open it!) and select "Send to" --> "Compressed (zipped) folder". This will make a zip with the same name as your project. - Upload the zip to this drop box. Type your collaboration statement into the message area. - Submit your assignment. 1. Write a program that uses one loop to process the integers from 300 down to 200 , inclusive. The program should detect multiples of 11 or 13 , but not both. The multiples should be printed left-aligned in columns 8 characters wide, 5 multiples per line (See Example Output). When all multiples have been displayed, the program should display the number of multiples found and their sum. round !? Integers totalng !? 2. Write a program that generates a two-column table showing Fahrenheit temperatures from -40F to 120F and their equivalent Celsius temperatures. Each line in the table should be 5 degrees F more than the previous one. Both the Fahrenheit and Celsius temperatures should be accurate to 2 decimal place. 3. Write a program that deliberately contains an endless or infinite while loop. The loop should generate multiplication questions with single digit random integers. Users can answer the questions and get immediate feedback. After each question, the user should be able to stop the questions and get an overall result. See Example Output
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started