Skip to content

Instantly share code, notes, and snippets.

@denizfurkan
Created May 10, 2019 14:50
Show Gist options
  • Save denizfurkan/ae7b25bc9ef6528b7238c7639d5433c2 to your computer and use it in GitHub Desktop.
Save denizfurkan/ae7b25bc9ef6528b7238c7639d5433c2 to your computer and use it in GitHub Desktop.
public class MainClass {
public static void main(String[] args) {
Ogrenci ogrenci1 = new Ogrenci();
ogrenci1.ad="Furkan";
ogrenci1.soyad="Bodur";
ogrenci1.numara=21793999;
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