Skip to content

Instantly share code, notes, and snippets.

@karanahuja-android
Last active September 19, 2020 06:33
Show Gist options
  • Save karanahuja-android/ad24318266ba54884a86ae9305349006 to your computer and use it in GitHub Desktop.
Save karanahuja-android/ad24318266ba54884a86ae9305349006 to your computer and use it in GitHub Desktop.
import 'dart:io';
import 'dart:math';
main ()
{
Random r = Random ();
int computer = r.nextInt (11);
print ("please start guessing the 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;
//stop the loop
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment