Homebasic program sum of two number September 19, 2023 0 public class SumofTwonum { public static void main(String[] args) { int fnum=10; int snum=20; int sum=fnum+snum; System.out.println("sum of two num is = "+sum); }} You Might Like View all
Post a Comment