ISP – Java ASSIGNMENT 3 Reminder: This assignment should be completed and uploaded to Canvas by 11:59PM on Monday of the week in which it is due (See due date listed on the first page of the Weeks...

1 answer below »
I believe that this is a fairly simple Java assignment for my class but I suck so if you could possibly figure this out that would be awesome.


ISP – Java ASSIGNMENT 3 Reminder: This assignment should be completed and uploaded to Canvas by 11:59PM on Monday of the week in which it is due (See due date listed on the first page of the Weeks Overview document). If the assignment(s) are submitted on time, students will have the ability to resubmit for higher grade. The grade for that particular assignment will be lowered 10% for an incorrect file name and submission. Directions: 1. Write a program that declares the following: • a String variable named name • an int variable named age • a double variable named annualPay Store your age, name, and desired annual income as literals in these variables. The program should display these values on the screen in a manner similar to the following: My name is Jesse Pinkman, my age is 25 and I hope to earn $100000.0 per year. 2. Write a program that takes a first name as the input, and outputs a welcome message to that name. Ex: If the input is: Jesse the output is: Hello Jesse, and welcome to ISP - Java Online! Submission: The course requires all students to submit assignments through Canvas. Students are required to watch the lecture “How to Submit Assignments to Canvas” before submitting their items. When submitting files: All files need to be compressed and saved as lastname-assignment#.zip before uploading to Canvas. Students will also need to submit a pdf of each Java file. For example: Smith-assignment3_a.zip Smith-assignment3_a.pdf Smith-assignment3_b.zip Smith-assignment3_b.pdf
Answered Same DaySep 27, 2021

Answer To: ISP – Java ASSIGNMENT 3 Reminder: This assignment should be completed and uploaded to Canvas by...

Amar Kumar answered on Sep 27 2021
130 Votes
1. Answer
import java.util.Scanner;
import javax.swing.JOptionPane;
public class Strings {
p
ublic static void main(String[] args)
{
String identity = "Jesse Pinkman";
int yearold= 25;
double annualSal= 100000.0 ;
//Output as requested.
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here