Merge pull request #8129 from sjmillington/core-java-move-3

[BAEL-15993] - Move articles out of core-java pt 3
This commit is contained in:
Josh Cummings
2019-11-12 21:51:11 -07:00
committed by GitHub
22 changed files with 418 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
package com.baeldung.basicsyntax;
public class SimpleAddition {
public static void main(String[] args) {
int a = 10;
int b = 5;
double c = a + b;
System.out.println( a + " + " + b + " = " + c);
}
}