Skip to content

Commit

Permalink
merge feature3
Browse files Browse the repository at this point in the history
  • Loading branch information
fpieschaconr committed May 22, 2019
1 parent 0fd7dbe commit ecb8d37
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/menu/src/Resta.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package resta;

import java.util.Scanner;

/**
*
* @author Cesar
*/
public class Resta {
public static int resta(int min, int sust){
int respuesta = min-sust;
return respuesta;
}

}

0 comments on commit ecb8d37

Please sign in to comment.