logo

Crowdly

Browser

Add to Chrome

¿Qué imprime? class Calculadora { int sumar( int a , int b ) { ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

¿Qué imprime?

class Calculadora {

int sumar(int a, int b) {

return a + b;

}

 

double sumar(double a, double b) {

return a + b;

}

}

 

public class Test {

public static void main(String[] args) {

Calculadora c = new Calculadora();

System.out.println(c.sumar(5, 3));

}

}

More questions like this

Want instant access to all verified answers on moodle.elpuig.xeill.net?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome