41 lines
560 B
Java
41 lines
560 B
Java
|
package fr.blankoworld.g5a;
|
||
|
|
||
|
import iutsud.Console;
|
||
|
|
||
|
public class Puissance {
|
||
|
|
||
|
/**
|
||
|
* @param args
|
||
|
*/
|
||
|
public static void main(String[] args) {
|
||
|
// TODO Auto-generated method stub
|
||
|
int x;
|
||
|
int y;
|
||
|
int resultat;
|
||
|
|
||
|
x = Integer.parseInt(args[0]);
|
||
|
y = Integer.parseInt(args[1]);
|
||
|
|
||
|
if(y==0)
|
||
|
{
|
||
|
resultat = 1;
|
||
|
}
|
||
|
else if (y==1)
|
||
|
{
|
||
|
resultat = x;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
int i = 0;
|
||
|
resultat = x;
|
||
|
for(i = 1; i < y; i++)
|
||
|
{
|
||
|
resultat = resultat * y;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
System.out.println(resultat);
|
||
|
}
|
||
|
|
||
|
}
|