VK7JG-NPHTM-C97JM-9MPGT-3V66T changepk.exe /productkey VK7JG-NPHTM-C97JM-9MPGT-3V66T
Code: #include <iostream> #include <conio.h> using namespace std; int main() { int count = 0; char input; cout << "--------------------------" << endl; cout << " Counter " << endl; cout << "--------------------------" << endl; cout << endl; cout << "Press 1 to counter" << endl; cout << "Press 0 to quit" << endl; cout << endl; cout << "Enter the number continuously : "; while (true) { input = getch(); if (input == '1') { count += 1; cout << "Your counts are " << count << endl; ...
Comments
Post a Comment