Good Afternoon,
I have recently written a simple application which does some calculations with numbers that have been inputted from the user. It works great on my computer through the IDE and Command Line. I would like to distribute this to work on a Windows formatted computer running Windows 7.
Basic Concept:
-I ask the user for information (numbers) some ints, some doubles
-I apply calculations to the numbers and round them to the next int (if necessary)
-Then I return the user a value
-This is done 5 times, getting stored information on 5 different variables
-I add those variables up and return the end result to the user.
Need Clarification on:
-I would like this application to run on others computers without the use of an IDE
-I would like this application to have a way for the user to view my questions, and a text field to answer my questions with a submit button
-I would like, once the calculations are complete. A way to display the results in order.
Example:
System.out.println("What is the value of Angle 1"):
User-input: 105
System.out.println("What is the value of Angle 2"):
User-input: 101
System.out.println("What is the value of Angle 3"):
User-input: 102
Angle 1 = 105
Angle 2 = 101
Angle 3 = 102
Min Qudrant = 308
*That was an example doing none of the calculations inside my program.
If you have any experience with this or need more information or to see my code for helping purposes. Please feel free to e-mail