1. 8.
    0
    @6 panpa 10 sayıyı da biz giricez mesela 10 20 30 40 50 60 70 80 90 100 giricez. 60 70 80 90 100 ü bastırıcak bize
    ···
  2. 7.
    0
    n(en yüksek skor sayısı)i de dışarıdan giricez heral, değil mi?
    ···
  3. 6.
    0
    @5 panpa bi basketbol takımının 10 maçta attığı sayıları istiyoruz kullanıcıdan ve o 10 maç içinden en yüksek 5 skoru geri veren bir program yazmak amacımız. c++ dilinde yazılıcak ve linked list class kullanılıcak ve add remove fonksiyonlarını kullanıcaz
    ···
  4. 5.
    0
    ingilizcem biraz ekgib panpam, açıklamalı olarak yaz yardımcı oluruz
    ···
  5. 4.
    0
    @3 ol panpa zordayım
    ···
  6. 3.
    0
    yardımcı olmak isterdim panpa :D
    ···
  7. 2.
    0
    upupupupupup
    ···
  8. 1.
    0
    beyler ayın 14 üne kadar yapmam gereken bi proje var aranızda yazılımcı ya da bilgisayar mühendisi varsa bi el atın.
    konu budur:

    yardımcı olan panpalarıma ne isterse yaparım!!

    Homework I – Keeping Basketball Score Console Application
    You are expected to implement a simple keeping basketball match scores game with following scenario:
    Select your favorite basketball team and assign random match scores only for your team. Each time you keep scores in a linked list (e.g. your team scores 88 points in a match, you keep 88 in a linked list). Matching fixture size is parameterized and you need to take from user. For example, if your team play 5 matches, your linked list size is 5 or if your team play 10 matches, your linked list size is 10. When your team play more matches than your fixtures, you may do some operations in your linked list (look at last minimum criteria). Ex: If your team score 2, 55, 60, 80, 62, 75, 82 it will only keep the best 5 scores (for fixture size N= 5) which are 82, 80, 75, 62, 60.
    Minimum Criteria:
    You are expected to write C++ console application.
    You need to create double circular linked list class which keep the last N best scores for the game.
    You need to store maximum N elements. (take N from user)
    You need to write minimum add and remove functions. You can write more functions, if you want.
    If linked list is full and new member is bigger than any member in linked list, you need to delete smallest element from the linked list and add new element into place of deleted element.
    ···