Girilen notun harf notu olarak yazılması

DrogbA

Forum Üyesi
Katılım
27 Ara 2020
Mesajlar
3,440
Tepkime puanı
0
Puanları
36
Kod:
package not_cevirisi;

import javax.swing.JOptionPane;


public class Not_cevirisi {

    
    public static **** main(String[] args) {
       Integer not=Integer.parseInt
               (JOptionPane.showInputDialog("Notunuzu giriniz"));
       
         String harf=" ";
         
         if (not>=90)
         {
           harf="A1";
        JOptionPane.showMessageDialog(null,"Notunuz: "+not+" "+ harf);
         
         }
        
       
        else if (not>=80)
        {
           harf="A2";
        JOptionPane.showMessageDialog(null,"Notunuz: "+not+" "+harf);
        
        }
         
        else if (not>=70)
        {
          harf="B1";
         JOptionPane.showMessageDialog(null,"Notunuz: "+not+" "+ harf);
        }
       
        else if (not>=65)
        {
            harf="B2"; 
          JOptionPane.showMessageDialog(null,"Notunuz: "+not+" "+ harf);
        }
    
        else if (not>=60)
        {
            harf="C";
         JOptionPane.showMessageDialog(null,"Notunuz: "+not+" "+ harf);
        }
         
        else if (not<60)
                {
                harf="D";
                JOptionPane.showMessageDialog(null,"Notunuz: "+not+" "+ harf);
                
                }
}

}
 

Peri

Co Admin
Katılım
2 May 2020
Mesajlar
4,949
Tepkime puanı
0
Puanları
36
Takım
Beşiktaş
Teşekkürler
 

Nutella

Bayan Üye
Özel Üye
Katılım
2 Ocak 2021
Mesajlar
3,559
Tepkime puanı
0
Puanları
36
Cinsiyet
  1. Bayan
Takım
Galatasaray
Paylaşım için teşekkürler.
 
metal işleme
Üst