Posts by André Martins • 29 points
1 post
-
2
votes1
answer461
viewsQ: In java, a Void that sums, returns value?
My doubt is about what exactly is a java return. Because I think the sum answer would be a kind of return, this is correct? void soma (int a, int b) { int s = a + b; System.out.println (s); }…