Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <conio.h>
- using namespace std;
- int main()
- {
- char znak;
- cout << "tak czy nie? (t/n): ";
- do
- {
- znak = getch();
- } while(znak != 't' || znak != 'n');
- cout << znak;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment