Search:

Type: Posts; User: rosiems95

Search: Search took 0.13 seconds.

  1. Replies
    2
    Views
    1,073

    Present Value

    import java.util.Scanner;
    import java.text.DecimalFormat;

    public class PresentValue
    {
    public static void main(String[] args)
    {
    Scanner keyboard = new Scanner(System.in);
    ...
  2. Replies
    5
    Views
    3,891

    Re: Falling Distance

    I tried both what Norm and jashburn suggested, and they both worked. The only thing is that with jashburn's suggestion it displays the output 10 times. Should it be doing that?
    Also, does this part...
  3. Replies
    5
    Views
    3,891

    Falling Distance

    When an object is falling because of gravity, the following formula can be used to determine the distance the object falls in a specified time period:
    d = 1/2 gt^2
    The variables in the formula...
  4. Replies
    1
    Views
    6,511

    Distance Traveled problem help

    My code compiles, but when running it, it continues to infinity. How do I change that?

    Here is the problem:

    The distance a vehicle travels can be calculated as follows:
    Distance = Speed *...
  5. Replies
    4
    Views
    3,661

    Re: Help with Java program: Internet Service Provider

    It worked! Thank you so much.
  6. Replies
    4
    Views
    3,661

    Help with Java program: Software Sales

    import java.text.DecimalFormat;
    import java.util.Scanner;

    public class SoftwareSales
    {
    public static void main(String[] args)
    {
    DecimalFormat money = new...
Results 1 to 6 of 6