角谷的猜想(递归思想) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年10月17日 0 点赞 0 评论 125 浏览 评分:9.9
关于函数的简单写法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun (int n ){ int c ; scanf( "%d",&n ) ; if ( n%2==0…… 题解列表 2024年11月08日 0 点赞 0 评论 86 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); while(a!=1) { …… 题解列表 2024年11月18日 0 点赞 0 评论 89 浏览 评分:0.0
1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:printf写在式子前。参考代码:#include<stdio.h>#include<math.h> int main(){ int a; scanf("%d",&a); for …… 题解列表 2024年12月08日 0 点赞 0 评论 172 浏览 评分:0.0
编写题解 1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n…… 题解列表 2025年01月10日 0 点赞 0 评论 101 浏览 评分:0.0