How am i supposed to fullfill both requirements at the same time: i am not allowed to let the program output anything in the console but at the same time commenting out the last print statement is is illegal because changing the code???
package de.codegym.java.core.level01.task12;
public class Solution
{
public static void main(String[] args)
{
int number = 10;
//int number = 20;
int uninitialized;
//System.out.println(uninitialized);
//String text = 123;
//System.out.println(undeclaredVariable);
System.out.println(number);
}
}