1. 1.
    +3
    #include <iostream>

    int main()
    {
    for(int x = 0; x < 10; x++)
    cout << "şukumu ver!" << endl;
    }

    2. include <iostream>

    int main()
    {
    for(int x = 0; x < 5; x++)
    cout << "şukunu al!" << endl;
    }

    edit : hile yaptım beyler siz 10 şuku veriyosunuz ben 5 şuku veriyorum
    ···
  2. 2.
    +3
    #include<stdio.h>
    3. include<conio.h>
    main()
    {
    printf("başlık up up up");
    getch();
    return 0;
    }
    ···