How to Create a Simple Calculator Program using Java Language ? Video Tutorial

preview_player
Показать описание
In this video tutorial you will learn to create a simple Calculator Programming using Java Programming Language.
This video is well suited for the beginners.

The Calculator programming created here will first display the menu option to the user.
user can select the operator that he wants to perform.
( Addition, Subtraction, Multiplication, Division)
Then we take two numbers as input from the user
and then we display the result.

Our website

Watch Video tutorials in Hindi at @LearningLadHindi

Other Social Media Pages of LearningLad
Рекомендации по теме
Комментарии
Автор

thanks bro you helped me with my assignment, subscribed. love you bro

henryclay
Автор

Lovely teaching sir.. Keep continue upload more advancing java videos 👍🙏

careerforfuture
Автор

Sir. Could you tell me your tutorial teach java 8 or a different vision of java? I'm beginner

lovemanga_forever
Автор

Write down an assembly program that calls a function which
adds two numbers and returns the result to the calling
function. Test it out by assembling it in an IDE and screenshot
the code and the working program in action. Can you help that🥺

MohamedIbrahim-gcem
Автор

Sir please continue to upload java vedios .i am a beginner

Codeshub
Автор

when im assigning cases, it says vairable num1 and num2 might not have been initialized

fardeenislam
Автор

which softwere you r using to write program

gauravraj
Автор

Is there a transcript? When I select Transcript it just goes back to the video?

CJ-ytqv
Автор

Sir pls tell which app or website is it done 😢😢😢 pls sir

Happyhoursall
Автор

plese let me know how to alter the code for showing invalid after entering the invalid operaotr withour asking the numbers.

vageeshajm
Автор

hy i need a prgm of airline reservation course management like this in eclipse bro pls do like project in eclipse console terminal output as it is simple

Introvert_Explorer
Автор

package revision;

import java.util.Scanner;

public class Flow_if
{
public static void Calculation(double a, double b, char operator)
{double c;
switch (operator)
{
case '+':c=a+b;
System.out.println(c);

break;
case '-':c=a-b;
System.out.println(c);

break;
case '*':c=a*b;
System.out.println(c);
break;
default:
System.out.println();
}


}
public static void main(String []args)
{
Scanner s=new Scanner(System.in);
System.out.println("enter the num and operator");
double aa=s.nextDouble();
double bb=s.nextDouble();
char cc=s.next().charAt(0);
Calculation(aa, bb, cc);

}
}

mohammedzeeshan
Автор

it's always an Indian who solves everything 😂😂😂

azisbro