上一页 1 ··· 4 5 6 7 8
摘要: #include #include #include using namespace std; int main() { char ch[1001]; cin >> ch; //memset(ch, 77, sizeof(ch)); //sprintf(ch, "%d", num); //cout << ch << endl; int... 阅读全文
posted @ 2017-07-25 08:37 diamondDemand 阅读(326) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ int n; cin >> n; int i = 0; while(n!=1) { i++; if(n%2==1) { n = (3 * n + 1)/2; } else { n = n / 2 阅读全文
posted @ 2017-07-24 19:32 diamondDemand 阅读(147) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8