Skip to content

Instantly share code, notes, and snippets.

@karanahuja-android
Last active September 13, 2020 09:02
Show Gist options
  • Save karanahuja-android/2224e564de87583fa9cb2abdbe018cdc to your computer and use it in GitHub Desktop.
Save karanahuja-android/2224e564de87583fa9cb2abdbe018cdc to your computer and use it in GitHub Desktop.
import 'dart:io';
main ()
{
int computer = 10;
String playerstring = 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");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment