Skip to content

Commit

Permalink
Merge pull request #748 from Xandre-01/master
Browse files Browse the repository at this point in the history
subo ejemplo java
  • Loading branch information
kant003 authored Oct 19, 2024
2 parents e9fd559 + 5c56bad commit 50d402e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions alexandreGozalez.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
public class alexandreGozalez {

public static void main(String[] args) {

int a = 4;

a = 5 * a + 3;

System.out.println("a vale: " + a);

a = 5 * (a + 3);

System.out.println("a vale: " + a);System.out.println();

}
}

0 comments on commit 50d402e

Please sign in to comment.