package com.codegym.task.task02.task0216;
/*
Minimum of three numbers
*/
public class Solution {
public static int min(int a, int b, int c) {
//write your code here
int min3 = 0;
if(a < b && a < c ){
min3=a;
}
else if(b < a && b < c){
min3=b;
}
else if(c < a && c < b){
min3=c;
}
return min3;
}
public static void main(String[] args) throws Exception {
System.out.println(min(1, 2, 3));
System.out.println(min(-1, -2, -3));
System.out.println(min(3, 5, 3));
System.out.println(min(5, 5, 10));
}
}
Help me please!! Why is this failing?
Under discussion
Comments (3)
- Popular
- New
- Old
You must be signed in to leave a comment
Guadalupe Gagnon
13 February 2019, 15:20
Next time you ask a question you should attach the code, not copy and paste, like this:
.
0
Guadalupe Gagnon
13 February 2019, 15:18
it should output:
1
-3
3
5
but it is outputting
1
-3
0
0
It looks like there is a bug when any of the numbers are duplicates.
0
Patricio
13 February 2019, 16:04
Thanks,Guadalupe. I'll try to fix it now
0