منتديات نور الهدى

هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

    Multiplication Table applet ex for || IT Dep.

    mr metoo
    mr metoo
    مشرف قسم تكنولوجيا المعلومات والثرى دى
    مشرف قسم تكنولوجيا المعلومات والثرى دى


    ذكر
    عدد الرسائل : 3149
    العمر : 35
    Location : alone in my sadness planet
    Favorites : GFX&Internet
    نقاط : 1016
    تاريخ التسجيل : 22/06/2007

    Multiplication Table applet ex for || IT Dep. Empty Multiplication Table applet ex for || IT Dep.

    مُساهمة من طرف mr metoo السبت 2 مايو 2009 - 0:02

    Al Salam 3likm dear sisters and brothers,
    Here is a sample code for the Multiplication table applet we discussed at the beginning of the term

    الكود:
    import java.applet.*;
    import java.awt.*;
    public class Multiply extends Applet
    {
    String line;

    public void paint(Graphics g)
    {
    for(int j=0; j<10;j++)
    {
    for(int i=1;i<10;i++)
    {
    line =j+"x"+i+"="+i*j;
    g.drawString(line,(j%5)*60,(120*(int)(j/5))+i*11);

    }
    }

    }

    }




    To be continued.......
    source .... here


      الوقت/التاريخ الآن هو الجمعة 15 نوفمبر 2024 - 4:10