Last active
September 6, 2020 10:09
-
-
Save karanahuja-android/27bb2ed31cee6de0eaeb6ba88835577e 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
main () | |
{ | |
var x = 3; | |
var y = 2; | |
print ("adding"); | |
print (x+y); | |
print ("subtracting"); | |
print (x-y); | |
print ("Multiplying"); | |
print (x*y); | |
print ("Dividing"); | |
print (x/y); | |
print ("Remainder operator"); | |
print (x % y); | |
print ("Find Percentage"); | |
print (x/y*100); | |
print ("---greater than---"); | |
print (x > y); | |
print ("---less than---"); | |
print (x < y); | |
print ("---equality operator---"); | |
print (x == y); | |
print ("---not equal operator---"); | |
print (x != y); | |
print ("---check $x for even number---"); | |
print (x % 2 == 0); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment