C++ Örnekleri 7 – İf Else Yapısı
#include <iostream> using namespace std; main() { int x; cout << "ortalama girin :"; cin >> x; if(x>90) { cout << "tebrikler.AA ile gectin"; } else if(x>80) { cout << "tebrikler.BA ile gectin"; } else if(x>70) { cout << "tebrikler.BB ile gectin"; } else if(x>60) { cout << "tebrikler.CB ile gectin"; } else { cout << "maalesef kaldiniz."; } cin >> x; }