Niharika IT Solution

BOOK /NOTES/NEWS

Recent Post

Showing posts with label Java Program. Show all posts
Showing posts with label Java Program. Show all posts

Java Program to Add Two Integers

 class Main {  public static void main(String[] args) {     int first = 10;     int second = 20;     int sum = first + second;     System.ou...