EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

 

How to do Addition in Java

Step 1: Declare two numbers (variables)

int num1 = 5;
int num2 = 10;

Step 2: Add the two numbers and store the result

int sum = num1 + num2;

Step 3: Print the result

System.out.println("Sum: " + sum);

Full example program:

public class AdditionExample
{
public static void main(String[] args)
 {
   int num1 = 5;
   int num2 = 10;
   int sum = num1 + num2;
   System.out.println("Sum: " + sum);
   }
}

Output:

Sum: 15

✅ Step-by-step: Addition in Java

🔹 Step 1: Declare variables to store numbers

int num1 = 10;
int num2 = 20;

🔹 Step 2: Add the two numbers

int sum = num1 + num2;

🔹 Step 3: Display the result

System.out.println("Sum: " + sum);

✅ Full Program Code

public class Addition {
public static void main(String[] args)
{
int num1 = 10;
int num2 = 20;
int sum = num1 + num2;
System.out.println("Sum: " + sum);
}
}

🟢 Output

Sum: 30

 

Addition using java programming language

Leave a Reply

Your email address will not be published. Required fields are marked *

EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

Popular Courses

[Course Image]

Introduction to Programming

Learn the fundamentals of programming with Python in this beginner-friendly course.

12 Hours Beginner
[Course Image]

Data Science Essentials

Master the basics of data analysis, visualization, and machine learning.

20 Hours Intermediate
[Course Image]

Web Development Bootcamp

Build modern websites with HTML, CSS, JavaScript and popular frameworks.

30 Hours Beginner
[Course Image]

Digital Marketing Fundamentals

Learn SEO, social media marketing, email campaigns and analytics.

15 Hours Beginner
Educational Website Footer