maxime12345

TP maxime

Mar 31st, 2020
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $val = Get-Random -Minimum 10 -Maximum 20
  2. Write-Host $val #ca facilite les tests
  3. do
  4. {
  5.     $i = Read-Host "Entrer un nombre"
  6.  
  7.     if($i -lt $val)
  8.     {
  9.         Write-Host "Plus grand !"
  10.     }
  11.     elseif($i -gt $val)
  12.     {
  13.         Write-Host "Plus petit !"
  14.     }
  15.  
  16. }while($i -ne $val)
  17.  
  18. Write-Host "C'est bon !"
Add Comment
Please, Sign In to add comment