欧尼图小游戏C++代码
时间: 2023-11-10 18:06:00 浏览: 101
c++小游戏代码
欧尼图是一种经典的数学游戏,以下是一个简单的欧尼图小游戏的C++代码:
```c++
#include <iostream>
using namespace std;
int main() {
int n;
cout << "请输入一个正整数n:";
cin >> n;
while (n > 1) {
cout << n << " ";
if (n % 2 == 0) {
n /= 2;
} else {
n = n * 3 + 1;
}
}
cout << n << endl;
return 0;
}
```
阅读全文