+ 1
Write a function prototype
Write a function prototype - inverse, which accept two floating value(x, y) with a string (str) and returns a boolean type value
1 Resposta
+ 1
function prototype(x, y, str) {
return true;
}
boolean prototype(float x, float y, String str) {
return true;
}
100% works