Last active
September 13, 2020 06:58
-
-
Save karanahuja-android/5bb759a9884d6c299332141afc6c98fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
import 'dart:math'; | |
main () | |
{ | |
Random r = Random (); | |
int computer = r.nextInt (11); | |
print (computer); | |
print ("please guess number"); | |
while (true) | |
{ | |
String playerstr = stdin.readLineSync (); | |
int player = int.parse (playerstr); | |
if (computer > player) | |
{ | |
print ("my number is higher"); | |
} | |
if (computer < player) | |
{ | |
print ("my number is lower"); | |
} | |
if (computer == player) | |
{ | |
print ("you got it!"); | |
break; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment