Skip to content

Instantly share code, notes, and snippets.

@denizfurkan
Created May 10, 2019 14:49
Show Gist options
  • Save denizfurkan/9fa1fa665a62095905e844012ab1612a to your computer and use it in GitHub Desktop.
Save denizfurkan/9fa1fa665a62095905e844012ab1612a to your computer and use it in GitHub Desktop.
public class MainClass {
public static void main(String[] args) {
Ogrenci ogrenci1 = new Ogrenci();
System.out.println("Ad :" + ogrenci1.ad);
System.out.println("Soyad :" + ogrenci1.soyad);
System.out.println("Numara :" + ogrenci1.numara);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment