#include /* Instrukcja switch */ using namespace std; int main() { int x=2; switch(x) { case 0: cout<<"Podales liczbe zero";break; case 1: cout<<"Podales liczbe jeden";break; case 2: cout<<"Podales liczbe dwa";break; default: cout<<"Zly zakres liczb";break; } cout<<"\n\n"; return 0; }