#include<iostream>
void simon(int n);
int main()
{
using namespace std;
simon(3);
cout << "Pick an integer:";
int count;
cin >> count;
simon(count);
cout << "Done!" << endl;
return 0;
}
void simo(int n)
{
using namespace std;
cout << "Simon says touch your toes" << n << "times," << endl;
}
從vod simo(int n)這里就運行不了,
問號,新人不懂求解
uj5u.com熱心網友回復:
應該是要你輸入一個數轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/11113.html
標籤:C++ 語言
