Selamlar herkese.
Bugün sizlere İf değerinin örnek kodunu göstereceğim;
// 50 ve 50 den yukarsi geçiyor siz kafanıza göre yapabilirsiniz.
#include <iostream.h>
main()
{
int not;
cout << "Notunuzu yazınız:";
cin >> not;
if ( not >= 50 )
cout << "Sınıfı geçtiniz!";
}