Skip to content

Instantly share code, notes, and snippets.

@Erinziyi
Created February 25, 2019 08:39
Show Gist options
  • Select an option

  • Save Erinziyi/c1bae185ba0de021ccd6ddd90fbd40b0 to your computer and use it in GitHub Desktop.

Select an option

Save Erinziyi/c1bae185ba0de021ccd6ddd90fbd40b0 to your computer and use it in GitHub Desktop.
main() {
int m = 1;
double n = 1.33;
print (m>>1);
print (m<<1);//0001
print (m & 3);
print (m | 4);
print('hello');
print(n.ceil());
print(n.floor());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment