Programalama > JAVA - JSP

Etiketler: java, swing, örnek

Ort. 0
Puan ver:
/**
 * Insert the type's description here.
 * Creation date: (31.12.2003 13:32:00)
 * Author: Bulent AYDOGDU
 * EMail : aybulent@hotmail.com
 */
import javax.swing.*;
class Deyimler1 {public static void main(String[] args) {
	String notStr= "00";
	int not= 0;
	//notStr= JOptionPane.showInputDialog("NOTUNUZU GİRİNİZ:");
	notStr= JOptionPane.showInputDialog(null, "NOTUNUZU GİRİNİZ:", "DENEME", 2);
	if (notStr.equals("")) {
		JOptionPane.showMessageDialog(null, "Bu alanı boş bırakamazsınız!!!" );
		System.exit(0);
	}
	if (!notStr.equals("")) {
		not= Integer.parseInt(notStr);
	}
	if (not == 0) {
		System.exit(0);
	}
	if (not >= 50) {
		JOptionPane.showMessageDialog(null, "Tebrikler. Bu dersten geçtiniz :)");
	}
	if (not < 50) {
		JOptionPane.showMessageDialog(null, "Bu dersten geçemediniz :)");
	}
	System.exit(0);
}
}


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.