#pragma region ourfunc.cpp
//ourfunc.cpp -- defining your own function
#if 1
#include <iostream>
void simon(int); //function prototype for simon()
int main()
{
using namespace std;
simon(3); //call the simon()function
cout << "Pick an integer: ";
int count;
cin >> count;
simon(count);//call it again
cout << "Done!" << endl;
return 0;
}


被折叠的 条评论
为什么被折叠?



