jumps.cpp: In function 'int minimum_jumps(int, int, int, int)':
jumps.cpp:14:19: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
14 | if(a <= c && c <= b || a <= d && d <= b || c <= a && a <= d || a <= d && d <= b)return 0 ;
| ~~~~~~~^~~~~~~~~
jumps.cpp:14:59: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
14 | if(a <= c && c <= b || a <= d && d <= b || c <= a && a <= d || a <= d && d <= b)return 0 ;
| ~~~~~~~^~~~~~~~~
jumps.cpp:14:79: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
14 | if(a <= c && c <= b || a <= d && d <= b || c <= a && a <= d || a <= d && d <= b)return 0 ;
| ~~~~~~~^~~~~~~~~
jumps.cpp:18:1: warning: control reaches end of non-void function [-Wreturn-type]
18 | }
| ^