You are on page 1of 1

//This is the shared zone where we will code as a class.

//Code from daily lessons will be left here for you to use.
//You may copy anything I leave here to use on your own
//without penalty.

class Main {
public static void main(String[] args) {

// 2[4(5+6)^4]

int ans = (int)(2*(4*Math.pow(5+6,4)));


System.out.println(ans);

System.out.println(1.0*2/3);
System.out.println();
System.out.println(2.0/3);
System.out.println(2/3.0); //DF
System.out.println((double)2/3); //LW
System.out.println(2.0d/3.0d);; //NZ
System.out.println(2/(double)3);
System.out.println((double)(2/3));
System.out.println(2.f/3.f); // SG

}
}

/*Cool Cursors Hang Out Below Here


* Coolest cursor
*/

You might also like