#include <cstdlib>

#include <iostream>

 

using namespace std;

 

int main(int argc, char *argv[])

{

   

    cout<<"Merhaba kullanici sisteme hosgeldin"<<endl;

    cout<<""<<endl;

 

    int a,b,c,d,e;

    cout<<""<<endl;

   

    cout<<"Ara sinav notunuzu giriniz: ";

    cin>>a;

         if ((a>100) || (a<0)) 

         return EXIT_SUCCESS;

 

    cout<<"Final notunuzu giriniz:     ";

    cin>>b;

   

    if((b<0) || (b>100))

    return EXIT_SUCCESS;

   

   c=(((a*3)+(b*7))/10);

   d=(100-c);

   e=50; //gecer not

  

   cout<<""<<endl;

  

   cout<<"Aldigin not: "<<c<<endl;

  

  

   if(c>=e)

{

   cout<<"Tebrikler  "<<c<<"  den gectiniz"<<endl;

   cout<<"Butunlemeye girmenize gerek yok, Seneye gorusuruz, cuusss"<<endl;

   cout<<""<<endl;

}

  

   if (c<e)

   cout<<"Maalesef  "<<c<<"  den kaldiniz"<<endl;

   cout<<"Butunlemelere girmeniz gerekiyor, eylulde gorusuruz"<<endl;

   cout<<"butunlemede almaniz gereken not: "<<d<<endl;

   cout<<""<<endl;

}

 

 

 

 

 

    system("PAUSE");

    return EXIT_SUCCESS;

}