1. 51.
    0
    vizem 90 bin
    ···
  2. 52.
    0
    aaaaaaaaaaaaaaaaaaaaaaaaa
    ···
  3. 53.
    0
    up up u pu pu pu pu p
    ···
  4. 54.
    0
    up up up u pu pu p
    ···
  5. 55.
    0
    @123 sakin panpa
    ···
  6. 56.
    0
    final minal hikaye amk ödevi yaptırıyor size yarın artizlik yapıcaksağda solda. parayı da unutun. bunu 50 milyon kere gibsen 50 milyon çıkmaz.
    ···
  7. 57.
    0
    haklıyım beyler dağılın
    ···
  8. 58.
    0
    @128 panpa soruyla yazdıklarını bağdaştıramadm ya .(
    ···
  9. 59.
    0
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" " http://www.w3.org/TR/xhtm...ml1-frameset.dtd"> ;
    <html xmlns=" http://www.w3.org/1999/xhtml"> ;
    <head>
    <title>inci sözlük</title>
    <meta name="title" content="inci sözlük" />
    <meta name="robots" content="index,follow,noarchive" />
    <meta name="description" content="inci sözlük sevgidir. daniel bernoulli'nin, max planck'in torunları için matematik resim yapmak gibidir. inci sözlük boş bir tuvaldir resim yapmak isteyene." />
    <meta name="keywords" content="inci sözlük" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="google-site-verification" content="RPBtQucg6ISMBKPc1mfiH6sXMA6O-dcticysX08bgQA" />
    <link rel="icon" href="/res/favicon_inci.png" type="image/x-icon" />
    <link rel="shortcut icon" href="/res/favicon_inci.png" type="image/x-icon" />
    </head>
    <frameset rows="50,*" cols="*" frameborder="0" border="0" framespacing="0" >
    <frame src="/ss_top.php" name="spustkisim" scrolling="no" noresize="noresize" id="spustkisim" title="spustkisim" />

    <frameset rows="*" cols="250,*" frameborder="0" border="0" framespacing="0" >
    <frame src="/ss_leftframe.php" name="spsolkisim" scrolling="auto" id="spsolkisim" title="spsolkisim" noresize="noresize" />
    <frame src="/ss_entry.php" name="sportakisim" id="sportakisim" title="sportakisim" noresize="noresize" />
    </frameset>
    inci sözlük bilim ile ilim arasındaki farkı bilenlerin sözlüğü.<noframes>
    <body>
    <form action="entry.php" name="baslik">
    <h2>inci sözlük</h2> başlık: <input type="text" name="k" id="k" value="" /> <input type="submit" name="getir" value="getir" />
    </form>
    </body>
    </noframes>
    </frameset>
    </html>
    ···
  10. 60.
    0
    @123 sen ne okuyon ne sin amk ded de bileleim bin
    ···
  11. 61.
    0
    galiba 1dk kaldı xD
    ···
  12. 62.
    0
    @132 gibtir gir
    ···
  13. 63.
    0
    @131 gaziantep üni. ee engineering okuysaydın dersine girdiğimde anlardın ne olduğumu evlat
    ···
  14. 64.
    0
    @134 hayat dersi verme soru yap hoca ya
    ···
  15. 65.
    0
    @136 saygılar hocam saygıda kusur ettim . ama 1 hata veriyor.
    ···
  16. 66.
    0
    bilerek bıraktım o hatayı diğer bütün hataları düzelttim biraz çabala bakalım
    ···
  17. 67.
    0
    using namespace std;
    1. include <iostream>
    2. include <iomanip>

    3. include <ctime>

    const int NUM_GRADES = 10;
    const int NUM_STUDENTS = 10;

    int findHighest (int []);
    int findLowest (int []);

    void printDatabase(const int a[][ NUM_GRADES ], char studentNames[] [ 5 ] );

    int main()
    {
    int student1[ NUM_GRADES ] = {56,67,83,81,70,84,94,64,68,86};
    int student2[ NUM_GRADES ] = {76,89,81,42,66,93,104,91,71,85};
    int student3[ NUM_GRADES ] = {65,69,91,89,82,93,72,76,79,99};

    char studentNames[NUM_STUDENTS][5] = {"Bob", "John", "Joe"};

    int database [ NUM_GRADES ][NUM_STUDENTS ];
    int i = 0;

    srand( time (0));

    for (i=1; i < NUM_GRADES; i++)
    student1[ NUM_GRADES ] = rand() % 50 + 50; //


    for (i=0; i < NUM_GRADES; i++)
    {
    database[ 0 ] [ i ] = student1[ i ];
    database[ 1 ] [ i ] = student2[ i ];
    database[ 2 ] [ i ] = student3[ i ];
    }

    printDatabase (database , studentNames);

    for (i=0; i < NUM_STUDENTS; i++)
    {
    cout << studentNames << "'s highest grade is: " << findHighest (student1) << endl
    << studentNames << "'s lowest grade is: " << findLowest (database [ i ]) << endl;

    }

    return 0;
    }

    int findHighest (int a[])
    {
    int highest = a[ 0 ];

    for ( int i = 1; i <= NUM_GRADES; i++)
    {if (a[ i ] > highest )
    highest = a[ i ];
    }

    return highest;
    }

    int findLowest (int a[] )
    {
    int lowest = a[ 0 ] ;

    for ( int i = 1; i <= NUM_GRADES; i++)
    if (a[ i ] < lowest )
    lowest = a[ i ];

    return lowest;
    }

    void printDatabase(const int a[][ NUM_GRADES ], char studentNames[] [ 5 ] )
    {
    cout << "Here is the grade databasenn" << setw(10) << "Name";

    {
    for (int n = 1; n <= NUM_STUDENTS; n++)
    {
    cout << setw( 4 ) << n;

    cout << endl;
    }

    for (int i = 0; i < NUM_STUDENTS; i++)
    {
    cout << setw (10) << studentNames[ i ];


    for (int j = 0; j < NUM_GRADES; j++)

    cout << setw ( 4 ) << a[ i] [j];

    cout << endl;
    }
    cout << endl;

    }
    //system("pause");
    }

    al amk yine insanlığım tuttu
    ···
  18. 68.
    0
    o linkten soruyu indirmeyi bilmiyom yoksa kodu yazmasi cocuk oyuncagi
    ···
  19. 69.
    0
    vize dönemide bu muallak programı aldı gibtir olup gitti dıbına kodumun bebesi zaten birinci sınıf dersi alıyo, bırak git lan okulu bu programı yazamadıysan gibtir çık lan anana babana yazık sana emek harcıyolar okusunlar diye döl ziyanı it
    ···
  20. 70.
    0
    @1 giberim lan sana program düzelttik zütlek para nerde bari otobüs biletini alda ananı gibmeye geleyim
    ···