Home
last modified time | relevance | path

Searched refs:fres (Results 1 – 2 of 2) sorted by relevance

/art/test/012-math/
Dexpected.txt23 fres:10.0
24 fres:-4.0
25 fres:21.0
26 fres:0.42857142857142855
27 fres:3.0
/art/test/012-math/src/
DMain.java76 double f, g, fres; in math_012() local
81 fres = f + g; in math_012()
82 System.out.println("fres:" +fres); in math_012()
83 fres = f - g; in math_012()
84 System.out.println("fres:" +fres); in math_012()
85 fres = f * g; in math_012()
86 System.out.println("fres:" +fres); in math_012()
87 fres = f / g; in math_012()
88 System.out.println("fres:" +fres); in math_012()
89 fres = f % g; in math_012()
[all …]