Skip to content

Instantly share code, notes, and snippets.

@zontyp
Last active August 30, 2020 08:58
Show Gist options
  • Save zontyp/97de72df8151f9ac02194e6d4a128de6 to your computer and use it in GitHub Desktop.
Save zontyp/97de72df8151f9ac02194e6d4a128de6 to your computer and use it in GitHub Desktop.
import 'dart:io';
import 'dart:math';
main ()
{
Random r = Random ();
var computer = r.nextInt (11);
var player = int.parse (stdin.readLineSync());
if (computer > player)
{
print ("my number is higher");
}
if (computer < player)
{
print ("my number is lower");
}
if (computer == player)
{
print ("you got it!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment