Tuesday, November 3, 2020

Product and Quotient of Two Numbers in Java

 In this article, I show you how to write a program that will ask the user to give two numbers, and then the program will compute the product and quotient of two numbers using Java programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price.

My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com







Program Listing


import java.util.Scanner;


/**

 * @author Jake Rodriguez Pomperada, MAED-IT, MIT

 * jakerpomperada@gmail.com

 * www.jakerpomperada.com

 * Bacolod City, Negros Occidental

 * November 3, 2020

 */


public class Product_Quotient {


public static void main(String[] args) {

// TODO Auto-generated method stub

  

int num_1=0,num_2=0;

 

int product=0,quotient=0;             

  

  String input;                

      

      Scanner keyboard = new Scanner(System.in);

           

         

      System.out.println("\n");

      System.out.print("\t\tProduct and Quotient of Two Numbers in Java");

        System.out.println("\n");

             

      System.out.print("\tGive First Number  : ");

         num_1 = keyboard.nextInt();

         

         System.out.print("\tGive Second Number : ");

         num_2 = keyboard.nextInt();

         

         product = (num_1 * num_2);

         

         quotient = (num_1 / num_2);


        System.out.println();

         System.out.println("\tThe product of " + num_1 + " and " +

                         num_2 + " is " + product + ".\n");

         System.out.println("\tThe quotient of " + num_1 + " and " +

                     num_2 + " is " + quotient + ".");    

     

                

      System.out.print("\n\n");

  System.out.println("\tEnd of Program");

  System.out.println("\n\n");


}


}


No comments:

Post a Comment