Skip to content

Instantly share code, notes, and snippets.

@GuilhermeManzano
Created September 15, 2020 01:03
Show Gist options
  • Save GuilhermeManzano/41cf7d69c12691c24630a6c19e8c94c4 to your computer and use it in GitHub Desktop.
Save GuilhermeManzano/41cf7d69c12691c24630a6c19e8c94c4 to your computer and use it in GitHub Desktop.
package artigosExercicios;
public class LataOleo {
public static void main(String[] args) {
double V, R, A;
R = 3.2;
A = 4.9;
V = 3.14159 * R * R * A;
System.out.println("O volume da lata de óleo é de " + V + " m³");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment