Write a Java Program to convert int type variables to long

Write a Java Program to convert int type variables to long

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
class Main {
  public static void main(String[] args) {

    // create int variables
    int a = 25;
    int b = 34;

    // convert int into long
    // using typecasting
    long c = a;
    long d = b;

    System.out.println(c);    // 25
    System.out.println(d);    // 34
  }
}

Final output

Leave a Comment