Commit 6357e972 authored by 9831133's avatar 9831133

Upload New File

parent cb6aafdd
Pipeline #2034 canceled with stages
public class Run {
public static void main(String[] args) {
Student std1 = new Student("Ehsan","Edalat", "9031066");
Student std2 = new Student("Seyed", "Ahmadpanah", "9031806");
Student std3 = new Student("Ahmad", "Asadi", "9031054");
std1.print();
std1.setGrade(15);
std1.print();
std2.print();
std2.setGrade(11);
std2.print();
std3.print();
std3.setFirstName("HamidReza");
std3.print();
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment