Doç. Dr. GÜRAY SONUGÜR

Doç. Dr. Güray SONUGÜR – Öğrenci Bilgi Paylaşım Platformu

Metotlar Basit Örnek 1

public class Metot1 {

public static void main(String[] args) {

MesajGoster();
System.out.println(“Toplam: ” + toplamsonuc());
System.out.println(“En Buyuk Sayı: ” + sonuc());

 

}

private static void MesajGoster()
{
System.out.println(“Bu mesaj Metot içerisinden gösteriliyor”);
}

private static double toplamsonuc()
{

//toplama işlemi yapan metot
double a = 5;
double b = 7;
return a + b;
}

private static int sonuc()
{

//Metot içinden verilen değişkenler ile en büyük sayı bulma
int a = 5;
int b = 6;
int c = 3;
int enb;
if (a > b)
enb = a;
else
enb = b;
if (enb < c)
enb = c;
return enb;
}
}