first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

9
CS1322/final/final.java Normal file
View File

@@ -0,0 +1,9 @@
public class finals{
public static void main(String srgs[]){
char c= (char)( '2' + 5);
System.out.println(c);
int x = '4' / '5';
System.out.println(x);
}
}