9. Greater of Two Values - Methods
Здравейте! Имам проблем с една задача, имам две решения едното ми дава 75/100, а другото 100/100. Чудя се защо в първия случай не ми дава 100/100.
Пускам си решението дава ми 75/100 в judge, в него сравнявам стринговете с ".length()"
https://pastebin.com/itx2UhZe
При второто решение използвах .compereTo
https://pastebin.com/jypsm00F
1.Greater of Two Values
You are given two values of the same type as input. The values can be of type int, char of String. Create a method getMax() that returns the greater of the two values:
Examples
Input |
Output |
int 2 16 |
16 |
char a z |
z |
string Ivan Todor |
Todor |
https://pastebin.com/itx2UhZe