Main.java
unknown
plain_text
5 years ago
211 B
3
Indexable
public class Main{
public static void main(String[] args) {
for(int x = 20; x > 18; x--){
Student s = new Student(" name " + x, x, " subj " + x);
s.printInfo();
}
}
}Editor is loading...