Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: help with a simple scanner problem

  1. #1
    Junior Member
    Join Date
    Sep 2014
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help with a simple scanner problem

    //This program solves the gratuity and subtotal!
    import java.util.Scanner;
    public class GratuityRate {
    public static void main(String[] args) {
    Scanner input = new Scanner(System.in);
    double gratuity = input.nextDouble();
    double subtotal = input.nextDouble();
    double total = gratuity / 100 * subtotal + subtotal;
    System.out.println("Enter the amount of gratuity and subtotal given:"total);
    }
    }

    i need to create a program to help solve the gratuity and subtotal to create a final total, can somebody help

    --- Update ---

    Nevermind i have solved it.


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: help with a simple scanner problem

    Welcome to the forum! Please read this topic to learn how to post code in code or highlight tags and other useful info for new members.

    Please post your code correctly using code or highlight tags per the above link.

Similar Threads

  1. [SOLVED] Help with my simple Scanner program?
    By helloworld9 in forum What's Wrong With My Code?
    Replies: 4
    Last Post: February 24th, 2014, 12:19 AM
  2. [SOLVED] Scanner problem
    By sentimentGX4 in forum What's Wrong With My Code?
    Replies: 5
    Last Post: September 30th, 2012, 06:09 PM
  3. [SOLVED] NoSuchElementException(), simple program not behaving right with Scanner class.
    By mwebb in forum What's Wrong With My Code?
    Replies: 1
    Last Post: October 25th, 2011, 06:41 PM
  4. What's wrong with simple Scanner program?
    By SV25 in forum What's Wrong With My Code?
    Replies: 3
    Last Post: April 21st, 2011, 07:05 AM
  5. Simple scanner problem
    By Sinensis in forum File I/O & Other I/O Streams
    Replies: 4
    Last Post: September 20th, 2009, 09:01 PM