fork(3) download
  1. // cetak hasiil jumlah 0.1 + 0.2 = 0.3 import java.util.*;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) { float jumlah; jumlah = 0.1f + 0.2f; System.out.println(jumlah); } }
Success #stdin #stdout 0.11s 55272KB
stdin
Standard input is empty
stdout
0.3