Last active
April 29, 2019 18:25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.apuntesdejava.methods.param.example; | |
public class NumberSquared { | |
public void showNumber(int a) { | |
System.out.println("El cuadrado del parámetro es: " + (a * a)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment