Main.java

 avatar
unknown
plain_text
4 years ago
211 B
1
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...