Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/46cd3c9c1631ba4615f35f5812f59a54 to your computer and use it in GitHub Desktop.
Save folivetti/46cd3c9c1631ba4615f35f5812f59a54 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int inteiro;
double real, resultado;
Scanner leitor = new Scanner(System.in);
inteiro = leitor.nextInt();
real = leitor.nextDouble();
resultado = inteiro/real;
System.out.println(resultado);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment