java to python

Solutions on MaxInterview for java to python by the best coders in the world

showing results for - "java to python"
Paola
18 Sep 2018
1import javax.swing.*;
2
3public class Exe4{
4	//metodo para calculo de Potencia
5public static int exp(int n1,int n2)   
6{
7	int i=0, total=0;
8	
9	while(i<=n2)
10	{
11			total = n1*n2;	
12			i++;
13	}
14	return total; 
15    
16}
17  
18       
19	//metodo principal
20	public static void main(String args[]){
21		//Declaração de Variáveis
22		int num1, num2;
23		
24		//Entrada de Dados do Usuário
25		num1 = Integer.parseInt(JOptionPane.showInputDialog("Digite um número"));  
26		num2 = Integer.parseInt(JOptionPane.showInputDialog("Digite outro número"));  
27		
28		//Exibição dos dados
29		
30		JOptionPane.showMessageDialog(null, exp(num1,num2));
31		
32	}
33	
34}
35
queries leading to this page
python to java converterjava to python