Instant Download Zip file (Contains all documents needed for this assignment) Current 2013-14 (Click on tutorial image to view snapshot) The entire course study guide includes the output file homework solution in notepad for (bachelors program) Your tutorial will include these files: Just shoot me an email. Ill have the answers to the study guide within 1 to 3 days. You will receive a free update to the study guide with the answers you need. Yes, this guide is designed to help students get through the CIS 355 Lab 1 exercise with ease. Program files for each of the following three programs. Step 1: Show escape sequences Write a Java program named that displays the following. I really like CIS355A “Business Application Programming with Lab using JAVA” Step 2: Circle Write an application called Circle.java that inputs from the user the radius of a circle as an intege
r and prints the circle’s diameter, circumference, and area. Use the example program and GUI technique message dialog box shown in the Week 1 Lecture. Use the following formulas. diameter = 2 * radius circumference = 2 * Math.PI * radius area = Math.PI * radius * radius Use the predefined constant Math.PI for your calculation. This constant is more precise than the value 3.14159. Class Math is defined in the java.lang package so you do not need to import it. Step 3: PracticeArithmeticOperators Write an application called that asks the user to enter two numbers. The program is to convert these numbers from String to type int and then print in a tabular format the sum, the difference, the product, and the quotient of the two numbers entered. Use the example program shown in the Week 1 Lecture. For example, if the user enters 25 and 5, the following should be displayed.