#include using namespace std; int main(){ int kogus; try{ cout << "Palun arv: "; cin >> kogus; if(kogus>=10) throw 1; //lihtsalt üks arv teatena cout << kogus << endl; } catch(int nr){ cout << "Probleem " << nr << endl; } } /* D:\kodu\0309\oma>a Palun arv: 45 Probleem 1 D:\kodu\0309\oma>a Palun arv: 2 2 */