lab10 go brrr

This commit is contained in:
2022-10-06 09:41:43 -05:00
parent 7d14b1b962
commit f298dfd268
21 changed files with 2159 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.mycompany.mavenproject1;
/**
*
* @author caleb
*/
public class NegativeVariableTest {
public static void main(String[] args)
{
int x = 5;
System.out.println(-x);
}
}

View File

@@ -0,0 +1,16 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.mycompany.mavenproject1;
/**
*
* @author caleb
*/
public class Unicode {
public static void main(String[] args)
{
System.out.println("\u2764");
}
}