Skip to content

Instantly share code, notes, and snippets.

@ashu-22
Created August 5, 2017 01:28
Show Gist options
  • Save ashu-22/1f36f806ca5776b023cd39b680b29f54 to your computer and use it in GitHub Desktop.
Save ashu-22/1f36f806ca5776b023cd39b680b29f54 to your computer and use it in GitHub Desktop.
int in java
int i;
int j;
int k;
i = 10;
j = 20;
k = 30;
if(i == 10)
{
System.out.print("10");
}
else if(j == 20)
{
System.out.print("20");
}
else (k == 30)
{
System.out.print("30");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment