Skip to content

Instantly share code, notes, and snippets.

View mithublue's full-sized avatar
🏠
Working from home

Mithu A Quayium mithublue

🏠
Working from home
View GitHub Profile
@mithublue
mithublue / flutter_setup.md
Created February 21, 2021 14:01 — forked from bradtraversy/flutter_setup.md
Flutter dev setup & notes
@mithublue
mithublue / Java - double data precision
Created November 1, 2016 06:10
Precision of mathamatical operation of data of double data type
import java.math.BigDecimal;
public class Main {
public static void main(String[] args){
double dNum = .012 ;
double sumNum = dNum + dNum + dNum;
System.out.println("Result : " + sumNum );
//convert the double to string