Skip to content

Commit

Permalink
Merge pull request #281 from Trisodium-ru/Trisodium-ru-patch-1
Browse files Browse the repository at this point in the history
Fix: teacher's solution
  • Loading branch information
Malcom1986 authored Oct 11, 2024
2 parents 4072ac4 + c8def23 commit 6d7c86a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions modules/30-variables/15-variable-expressions/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ public static void main(String[] args) {

// BEGIN
var dollarsCount = eurosCount * 1.25;
System.out.print(dollarsCount);
System.out.print("\n");
System.out.println(dollarsCount);

var rublesCount = dollarsCount * 60;
System.out.print(rublesCount);
System.out.print("\n");
System.out.println(rublesCount);
// END
}
}

0 comments on commit 6d7c86a

Please sign in to comment.