CS 160, Spring 2015
Programming Assignment P2
Numbers and Strings

Programming due Monday, Feb. 2 at 6:00pm; late deadline Feb. 2 at 11:59pm.


Using Numbers and Strings in Java

This programming assignment has four objectives:
  1. to use Java variables and operators to write expressions,
  2. to understand how to manipulate Java strings and characters,
  3. to print formatted output, and
  4. to see if you can follow a specification exactly!

Description

The program 1) declares a set of variables of several different data types, 2) uses the variables to construct expressions to do some simple math, 3) manipulates strings and characters, and 4) outputs the results.

Instructions

For this assignment, you must follow directions exactly. Create a P2 project in Eclipse then write a class P2 with a main method, and put all of the following code into the main method:
  1. Declare an integer variable of type byte, short, int, and long.
  2. Declare a floating-point variable of type float, and double.
  3. Declare three variables of type char.
  4. Declare three variables of the class String.
  5. Initialize the variables to the values shown below (using an initializer or assignment statement):
  6. byte: 32, short: 15477, int: 664422, long: 3984759871
  7. float: 8.112, double: 56.4444
  8. char: '&', 'S', '5'
  9. String: "Computer", "Science", "Excellent"
  10. NOTE: The long integer value exceeds 32-bits, and therefore requires special syntax.
  11. NOTE: The float value similarly requires special syntax, otherwise it will default to type double.
  12. Find the syntax referenced above for long and float literals on the web and use them.
  13. (Line 1) Print the four integer values in the following order (byte,short,int,long) separated by colons (:).
  14. (Line 2) Print the two floating-point values in the following order (float, double) separated by a comma (,).
  15. (Line 3) Print the sum of all the integer variables divided by 99999.
  16. (Line 4) Use Math.sqrt() to compute and print the square root of the sum of the float and double.
  17. NOTE: Use System.out.printf with a specified to ensure exactly 3 digits after the decimal point.
  18. (Line 5) Print the quotient of the byte variable divided by the float variable.
  19. NOTE: Use System.out.printf with a specified to ensure exactly 5 digits after the decimal point.
  20. (Line 6) Print the three characters, separated by equals signs (=).
  21. (Line 7) Subtract 3 from all three character values and print them again, separated by tildes (~).
  22. (Line 8) Using the three String variables and string constants, print Computer Science is Excellent!.
  23. NOTE: The following items require a String method call inside a print statement.
  24. (Line 9) Print the length of all three String variables, separated by commas.
  25. (Line 10) Print the third String variable in uppercase letters.
  26. (Line 11) Print the third through seventh characters of the first String variable.
  27. (Line 12) Print the index of the character 'e' in the second String variable.
  28. (Line 13) Print the fourth character of the first String variable.

Sample output

Your program should match the output shown below, with no mispellings, wrong characters, incorrect case, or extra white space! A missing line will cause many errors, so make sure you have all of the lines below in the correct order. See the grading criteria below.
32:15477:664422:3984759871
8.112,56.4444
39854
8.035
3.94477
&=S=5
#~P~2
Computer Science is Excellent!
8,7,9
EXCELLENT
mpute
3
p

Specifications

Your program must meet the following specifications:

Grading Criteria

Submit your program to the Checkin tab on the course website, as you were shown in the recitation, and read the syllabus for the late policy (if necessary).

© 2015 CS160 Colorado State University. All Rights Reserved.