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

  Console application for a small car servicing company

Develop a program for the service department staff - Console application for a small car servicing company

  Create a new android application project

You have been hired to create a mobile application for Healthy Life, a local organic bakery and grocery store. The main screen should state the name of the person who owns the phone. Create a new Android Application Project

  Write a java program that draws a square abcd

Write a java program that draws a square ABCD. The points A and B are arbitrarily specified by the user by clicking the mouse button. The orientation of the points should be counter-clockwise.

  Solve computer science java validation problem

Computer Science, Operating Systems - Year 1Description:java validationProblem: Using NetBeans 7.2

  Write a java program to perform matrix multiplication

In this project you need to write a java program called to perform matrix multiplication and

  Example of overloading

Implement in different classes and that have the same number and type of parameters - Inheritance models the IS-A relationship, in which the objects of the subclass are also objects of the superclass - Different classes and that have the same number ..

  A program that reads a four-digit number from the keyb

Write a program that reads a four-digit number from the keyboard as a string and then converts it into decimal. For example, if the input is 1100, the output should be 12. Hint: Break the string into characters and then convert each character to a va..

  Explain the difference between throwing an exception and

question 1. what is the difference between throwing an exception and catching an exception?question 2. how does a

  Need the build function.use recursion

Implement remaining function. Everything else is provided. Use given material to receive points. Implement remaining function. Everything else is provided. Use given material to receive points. Implement remaining function. Everything else is provide..

  Write the bubble sort

The village of Marengo conducted a census and collected records that have household data, including the number of occupants in each household.

  Write a class that implements an ordered list of strings

In this problem you will write a class that implements an ordered list of Strings.

  Write program with jframe to enter series of names

Write a program with JFrame which permits user to enter series of friends' names and phone numbers and creates file from entered data.

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