if uygulaması

Girilen sayını 1 den 9 a kadar bölünebilirliğini bulan uygulama

 

import javax.swing.JApplet;
import javax.swing.JOptionPane;

public class NewJApplet extends JApplet {

    public void init() {

        int Sayi;
        String GirilenSayi;
        String Mesaj;

        GirilenSayi = JOptionPane.showInputDialog("Sayı Girin");

        Sayi = Integer.parseInt(GirilenSayi);

        Mesaj = GirilenSayi + " sayısı n";

        if (Sayi % 2 == 0) {
            Mesaj = Mesaj + "2 ile bölünürn";
        } else {
            Mesaj = Mesaj + "2 ile bölünemezn";
        }

        if (Sayi % 3 == 0) {
            Mesaj = Mesaj + "3 ile bölünürn";
        } else {
            Mesaj = Mesaj + "3 ile bölünemezn";
        }

        if (Sayi % 5 == 0) {
            Mesaj = Mesaj + "5 ile bölünürn";
        } else {
            Mesaj = Mesaj + "5 ile bölünemezn";
        }

        if (Sayi % 6 == 0) {
            Mesaj = Mesaj + "6 ile bölünürn";
        } else {
            Mesaj = Mesaj + "6 ile bölünemezn";
        }

        if (Sayi % 7 == 0) {
            Mesaj = Mesaj + "7 ile bölünürn";
        } else {
            Mesaj = Mesaj + "7 ile bölünemezn";
        }

        if (Sayi % 8 == 0) {
            Mesaj = Mesaj + "8 ile bölünürn";
        } else {
            Mesaj = Mesaj + "8 ile bölünemezn";
        }

        if (Sayi % 9 == 0) {
            Mesaj = Mesaj + "9 ile bölünürn";
        } else {
            Mesaj = Mesaj + "9 ile bölünemezn";
        }

        JOptionPane.showMessageDialog(null, Mesaj);

    }
}

if uygulaması

if uygulaması

Yorumunuzu Ekleyin


Yükleniyor...
Yükleniyor...