Created
March 21, 2018 15:08
-
-
Save S0c5/13e62475eb8cc9b0fb5d1e4ade1bd2d5 to your computer and use it in GitHub Desktop.
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
// NO :) | |
System.out.println("los estudiantes que aprobaron fueron: " + pasaron + " y los que reprobaron fueron: " + reprobaron); | |
// yes | |
System.out.printf("los estudiantes que aprobaron fueron: %d y los que reprobaron fueron %d \n", pasaron, reprobaron); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment