Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 23, 2016 18:35
Show Gist options
  • Save ilyaBrandon/72697cae04904d2a49d3 to your computer and use it in GitHub Desktop.
Save ilyaBrandon/72697cae04904d2a49d3 to your computer and use it in GitHub Desktop.
public class BATTLEFRONT {
public static void main(String[] args) {
System.out.println(min(2,2,8));
}
static int min(int a,int b,int c){
int result=a;
if(result > b ){result= b;
}
if(result>c){ result=c;
}
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment