Skip to content

Instantly share code, notes, and snippets.

@S0c5
Created March 21, 2018 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save S0c5/13e62475eb8cc9b0fb5d1e4ade1bd2d5 to your computer and use it in GitHub Desktop.
Save S0c5/13e62475eb8cc9b0fb5d1e4ade1bd2d5 to your computer and use it in GitHub Desktop.
// 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