Skip to content

Commit

Permalink
Solve Sphere in java
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Jul 23, 2024
1 parent b76fda5 commit b7bffaf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions solutions/beecrowd/1011/1011.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import java.util.Scanner;
import java.lang.Math;

public class Main {
public static void main(String args[]) {
Scanner input = new Scanner (System.in);

float r;
double pi = 3.14159;

while (input.hasNextInt()) {
r = input.nextInt();

System.out.printf("VOLUME = %.3f\n", 4.0 / 3.0 * pi * Math.pow(r, 3));
}
}
}

0 comments on commit b7bffaf

Please sign in to comment.