Skip to content

Instantly share code, notes, and snippets.

View stely2024's full-sized avatar

Stel24 stely2024

View GitHub Profile
@stely2024
stely2024 / WeekTwoHomework.cls
Created October 29, 2025 15:58
WeekTwoHomework
public static void conditionalsExercise() {
Boolean result;
//You do this part!
// 1. Write a comparison statement that evauates to false and assign the result to our result variable
//Don't forget to maintain indentation!
Integer i = 4;
public static void primitivesExercise() {
//You do this part!
//1. Declare three primitives variables, an Integer, a String and a Decimal
Integer i;
String myHomework;
Decimal dec;
//2. Assign values to your three new variables