C++ Örnekleri 5 – İf Else Yapısı
#include <iostream> using namespace std; main() { int x; if(8>3) { cout << "tebrikler dogru"; cout << endl; } else { cout << "yanlıs"; cout << endl; } cout << "bitti"; cin >>x; }
C++ Örnekleri 5 – İf Else Yapısı
#include <iostream> using namespace std; main() { int x; if(8>3) { cout << "tebrikler dogru"; cout << endl; } else { cout << "yanlıs"; cout << endl; } cout << "bitti"; cin >>x; }