Sunday, July 10, 2016

Sum of Three Numbers in Java

A simple program that I wrote in Java that will ask the user to give three integer numbers and then our program will find the total sum of three numbers based of the given values by our user. 

Add me at Facebook my address  is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.



Sample Program Output


Program Listing


sum_three.java


package hello;


import java.util.Scanner;
public class sum_three {
 public static void main(String args[]){
 
 Scanner input = new Scanner(System.in);
    
       int sum=0;
       int a=0,b=0,c=0;
    
       System.out.println("Sum of Three Numbers in Java");
       System.out.println();
       System.out.print("Enter First Number : ");
       a = input.nextInt();
       System.out.print("Enter Second Number : ");
       b = input.nextInt(); 
       System.out.print("Enter Third Number : ");
       c = input.nextInt(); 
     
       sum = (a+b+c);
       
       System.out.println();
       System.out.println("The sum of " +a + "," + b + " and " + 
           c + " is " + sum + ".");
       System.out.println();
       System.out.println("\t End of Program");
 
 }
 
}



No comments:

Post a Comment