Guest User

Untitled

a guest
Nov 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //ECM D2 Java Programs
  2. //By SaiKun
  3.  
  4. import java.util.Scanner;
  5.  
  6. public class DefConst {
  7. Scanner New_Obj = new Scanner(System.in);
  8.  
  9. DefConst(){
  10. int a,b,c;
  11. System.out.println("Enter two values :");
  12. a = New_Obj.nextInt();
  13. b = New_Obj.nextInt();
  14. c = a+b;
  15. System.out.println("The sum is "+c);
  16. }
  17.  
  18. public static void main(String[] args) {
  19. DefConst Obj_1 = new DefConst();
  20.  
  21. }
  22.  
  23. }
Add Comment
Please, Sign In to add comment