تسجيل الدخول

مشاهدة النسخة كاملة : مساعدة في جافا


فاطمة6
2013-11-18, 19:02
السلام عليكم

ممكن فكرة حول حل هذا التطبيق باستعمال 2 class


'ecrire un programme java qui creer un thread affiche infinement le caractére 'a'

فاطمة6
2013-11-19, 19:08
لا توجد اي مساعدة !!!

ibra_youvi
2013-12-08, 23:58
public classe affiche Extends Thread
{
run()
{
while(true)
{
System.out.println("a ");

}
}
}

public classe test
{
public static viod main(String args[])
{
affiche r=new affiche();
r.start();
}
}