Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $val = Get-Random -Minimum 10 -Maximum 20
- Write-Host $val #ca facilite les tests
- do
- {
- $i = Read-Host "Entrer un nombre"
- if($i -lt $val)
- {
- Write-Host "Plus grand !"
- }
- elseif($i -gt $val)
- {
- Write-Host "Plus petit !"
- }
- }while($i -ne $val)
- Write-Host "C'est bon !"
Add Comment
Please, Sign In to add comment