Addition program
Java code :
Method - 1
public class Main{
public static void main(String[] args){
int a = 5;
int b = 10;
int c = a + b;
System.out.println("Addition of a and b is = " + c);
}
}
Explanation :
Step 1: first we ...
smartcookie.hashnode.dev2 min read