12 lines
161 B
Plaintext
12 lines
161 B
Plaintext
entier $i, entier $carre;
|
|
main()
|
|
{
|
|
$i = 0;
|
|
tantque $i < 10 faire
|
|
{
|
|
$carre = $i * $i;
|
|
ecrire( $carre );
|
|
$i = $i + 1;
|
|
}
|
|
}
|