Posts by Lucian Rodrigues • 99 points
2 posts
-
0
votes1
answer89
viewsQ: Java error when creating private class
Every time I try to create a private class in java I’m not getting it. Follow the full code below. package execucaodeprogramas; import java.awt.event.ItemListener; import javax.swing.JCheckBox;…
javaasked Lucian Rodrigues 99 -
7
votes1
answer386
viewsQ: What is and how does the repetition of the for in C#?
for (int i = 0; i < palavra.Length; i++) What does each word mean? And how each part of that code works?