题解 1147: C语言训练-角谷猜想

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

<循环>角谷猜想(C语言)

摘要:#include<stdio.h> int main() { int n,x,y; scanf("%d", &n); while (n > 0)//未知循环次数用while语句 {……

************角谷猜想************

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    for(;……

C语言训练-角谷猜想

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main(){    int N;    cin >> N;     while ……

c代码记录之角谷猜想-C

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int deal(int m){     if(m%2==0){         printf("%d/2=%d\n",m,……