Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 218 Bytes

new.md

File metadata and controls

8 lines (8 loc) · 218 Bytes

public class IntToLongExample2{
public static void main(String args[]){
int i=100;
Long l= new Long(i);//first way
Long l2=Long.valueOf(i);//second way
System.out.println(l);
System.out.println(l2);
}}