Write java application to demonstrate the behavior

Assignment Help JAVA Programming
Reference no: EM13782847

Instructions

This simple exercise is meant to verify that you have properly installed Java SE and an IDE on your computer so that you are ready for the later programming assignments in this course.

Type the following program source code into your IDE. The source code is patterned after a similar example that was taken from Joyce Farrell's textbook, Java Programming. Modify the comments for your name and the current date, and change the class file name to reflect your first name. Then compile your code. Remember: If you get compile errors when you do the compile, fix the errors one at a time and then recompile the program. Because the compiler may get confused by the first error, very often, by fixing the first error, many of the remaining errors will go away since they may not really be errors at all.
/**

* Program #1

*

* Function: Simple Java application to demonstrate the behavior

* of different data types, arithmetic, concatenation, and

* output of results.

*

* Programmed By: Reggie Haseltine, instructor (July 18, 2009)

*

* Based upon code Taken From: "Java Programming" by Joyce Farrell

*

*/

public class Program1_Reggie

{

public static void main(String[] args)

{

int xx = 315;

short xx = 23;

long xx = 1234567876543L;

int value1 = 43, value2 = 10, sum, difference,

product, quotient, modulus;

boolean isProgrammingFun = true;

double doubNum1 = 2.3, doubNum2 = 14.8, doubResult;

char myGrade = 'A', myFriendsGrade = 'C';

System.out.println("Our grades are " + myGrade +

" and " + myFriendsGrade);

doubResult = doubNum1 + doubNum2;

System.out.println("The sum of the doubles is " +

doubResult);

doubResult = doubNum1 * doubNum2;

System.out.println("The product of the doubles is " +

doubResult);

System.out.println("The value of isProgrammingFun is " +

isProgrammingFun);

System.out.println("The value of isProgrammingHard is " +

isProgrammingFun);

System.out.println("The int is " + oneInt);

System.out.println("The short is " + oneShort);

System.out.println("The long is " + oneLong);

sum = value1 + value2;

difference = value1 - value2;

product = value1 * value2;

quotient = value1 / value2;

modulus = value1 % value2;

System.out.println("Sum is " + sum);

System.out.println("Difference is " + difference);

System.out.println("Product is " + product);

System.out.println("Quotient is " + quotient);

System.out.println("Modulus is " + modulus);

System.out.println("\nThis is on one line\nThis on another");

System.out.println("This shows\thow\ttabs\twork");

} // end method main

} // end class Program1_Reggie

Assignment Deliverable Instructions

1.Submit only your modified source code, successful compile, and final output. Do not submit the original supplied source code, compile, or output.

2.Make sure that you include the course, the program number, your name, and the date in your program header. Also include this information at the top of your Microsoft Word file. Include additional comments, as necessary, and maintain consistent indentation for good programming style, as shown and discussed in our text.

3.You may use the Windows Command Prompt command line interface or any Java IDE you choose to compile and execute your program.

4.Submit the following deliverables to the Dropbox:

a. A single Microsoft Word file containing a screen snapshot of your Java source code for Program1_YourName.java (just the beginnings of the source code is OK) as it appears in your IDE (e.g., jGRASP, Eclipse, Net Beans, JDeveloper, etc.) or editor (e.g., a Windows command line "more" of the .java file's first screen).

b. A listing of your entire modified version of the Java source code for Program1_YourName.java in the same Microsoft Word file as item a), and following item a). You can simply copy and paste the text from your IDE into Microsoft Word. Make sure to maintain proper code alignment by using Courier font for this item. Do not submit the original source code files!

c. A screen snapshot showing your program's successful compile in the same Microsoft Word file, and following item b) above.

d. A screen snapshot showing all of your program's output in the same Microsoft Word file, and following item c) above.

5.Your instructor will compile and run your program to verify that it compiles and executes properly.

6.You will be evaluated on (in order of importance):

·Inclusion of all deliverables in Step 4 in a single Word file.

·Correct execution of your program. This includes getting the correct results with the modified class files!

·Adequate commenting of your code.

·Good programming style (as shown and discussed in the textbook's examples).

·Neatness in packaging and labeling of your deliverables.

You must put all your screen snapshots and source code into a single Microsoft Word file.

Reference no: EM13782847

Questions Cloud

It is true that charisma has no genetic link : It is true that charisma has no genetic link. Charisma is a characteristic which often leaves people in awe. Some seem to naturally possess it, yet many do not. Prepare a paper on the powerful element of charisma. Discuss whether or not charisma can ..
How date rape is distinguished from stranger rape : Define the term date rape (or acquaintance rape-the terms are interchangeable) and how date rape (acquaintance rape) is distinguished from stranger rape, statutory rape, and spousal rape
Short notes on compensation structure : Explain and evaluate the relative worth of a set of jobs, and determine a compensation structure to assist retention and career management of the company's human resources
Public versus private institutions : Is there a significant difference between first year post college incomes of graduates from public versus private institutions? Provide the IV, DV, and best method of analysis.
Write java application to demonstrate the behavior : The source code is patterned after a similar example that was taken from Joyce Farrell's textbook, Java Programming.
Were the strategies that did not disrupt the organization : Kaplan & Norton suggest techniques for implementing strategies without disrupting organizations. Provide examples from your work experience of disruptive and non-disruptive strategy implementations.   Were the strategies that did not disrupt the orga..
Write a two page rough draft of your reflection assignment : Write a 1 to 2-page rough draft of your Reflection Assignment.
Assignment regarding the ethical relativism : In America, many are comfortable describing ethics as follows: "Well, what's right for me is right for me and what's right for you is right for you.
Short notes on midas : Real World Scenarios: Midas and Genoa Ford, Same Service but Not Competitors

Reviews

Write a Review

JAVA Programming Questions & Answers

  Create an employee class.

Create an Employee class. Items to include as data members are employee number, name, date of hire, job description, department, and monthly salary.

  Complete the code to counts the number of lines input

Complete the code to counts the number of lines input by a user until the user enters the string ENDOFDATA (must be uppercase letters, no spaces) on a line by itself.

  Compute area and perimeter of a polygon

Create a project that would let a user compute area and perimeter of a polygon

  Write a class called rationalnumber

Write a class called RationalNumber that represents a fraction with an integer numerator and denominator.

  Integers as a parameter and returns the number

Write a method maxOccurrences that accepts a list of integers as a parameter and returns the number the number of times the most frequently occurring integer

  Write a java program that computes and prints the value

Write a Java program that computes and prints the value of 6!/5! using Scanner.

  Create java program to describe inheritance and polymorphism

Create a Java program based on the geometric shapes example described at the beginning of this lesson using Classes Square, Triangle, Rectangle, and Circ leto help describe inheritance and polymorphism.

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Statistics list program

You will also modify your program to accept input from an input file and print a report to an output file. These files are to be named by the user at runtime.

  List data structures to be used in solution

write a program that will prompt the user for an input file name to read from. The Input file will consist of records made up of first name, last name and an account balance of individuals and store the individuals in an ArrayList.

  Give at least one constructor without any parameter

We learned as popular Set implementation. Write own TreeSet class that implements following interface: You are to give at least one constructor without any parameter.

  Program that allows the user to enter the last names

Write a program that allows the user to enter the last names of 5 candidates in a college election and the votes received by each candidate. The program should then output each candidates name, the votes reveived by that candidate

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd