ARTICLE AD BOX
public class Main {
public static void main(String[] args) {
System.out.println("the first string");
System.out.print("the second string");
}
}
i get that this is a silly question but it caused me mild irritation and i want answers.
in java everyone I've learned from so far uses System.out.println("bla bla...") and im used to doing the python print ("bla bla...) and i did that in java and it works just fine. the println would trip me up all the time and i always end up with code that uses both print and println. everyone seems to be using println and idk if I'm doing it wrong or if its somehow less efficient or does less idk. honestly i just wanna know what e
