Guest User

Untitled

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