Kali ini saya akan membagikan tentang cara mencari nilai yang lebih akurat pada pemrograman java.
public class ObtainMoreAccurateResult {
public static void main(String[] iriahus) {
int n = 50_000; // Underscores only valid for jre 1.7 or later
double result1 = 0;
double result2 = 0;
for (int i = 1; i <= n; i++) {
result1 = result1 + (1.0 / i);
}
System.out.println("The result of summation of preceeding series" +
"from left to right is " + result1);
for (int i = n; i > 0; i--) {
result2 = result2 + (1.0 / i);
}
System.out.println("The result of summation of preceeding series" +
"from right to left is " + result2);
}
}
Berikut output dari program diatas :
Semoga bermanfaat, . .
0 Response to "Mendapatkan Hasil yang Lebih Akurat"
Post a Comment