الأربعاء، 22 يناير 2020

flowchart 1 | download flowgorithm and frist program ( hello & name )

 كيفية تثبيت برنامج flowgorithm 

رابط تنزيل البرنامج :








اول مثال نعمله مع بعض ندخل الاسم ويظهر hello & name














هناك تعليق واحد:

  1. #include
    #include
    using namespace std;

    int main()
    {
    srand((int)time(0));

    const int n = 9;
    double a[n][n];
    int b[n][n];

    for (int i = 0; i < n; i++)
    {
    for (int j = 0; j < n; j++)
    {
    a[i][j]=rand()%9+ 1;
    cout <a[i][i]) b[i][j]=1;
    else b[i][j]=0;
    cout <<b[i][j]<<" ";
    }
    cout <<endl;
    }
    system("pause");
    return 0;
    }

    ردحذف