Skip to content

Instantly share code, notes, and snippets.

View Dev-HyunSang's full-sized avatar
👋
Hey, It's me!

HyunSang Lev Park Dev-HyunSang

👋
Hey, It's me!
View GitHub Profile
package com.company;
public class Number {
public static void main(String[] args) {
// Operator
System.out.println(6 + 2); //8 Number
System.out.println(6 - 2); //4 Number
System.out.println(6 * 2); // 12 Number
System.out.println(6 / 2); // 3 Number
package com.company;
public class DataType {
public static void main(String[] args) {
System.out.println(6); //Number
System.out.println("six"); //String
System.out.println("6"); // String 6
package com.company;
public class DataType {
public static void main(String[] args) {
System.out.println(6); //Number
System.out.println("six"); //String
System.out.println("6"); // String 6
package com.company;
public class Number {
public static void main(String[] args) {
// Operator
System.out.println(6 + 2); //8 Number
System.out.println(6 - 2); //4 Number
System.out.println(6 * 2); // 12 Number
System.out.println(6 / 2); // 3 Number