母牛的故事(数组做法,个人觉得用数组会更加形象点,比用函数会好) 摘要:#include<stdio.h>int main(){ int n; while(~scanf("%d",&n)){ if(n==0)break; int a[n]; …… 题解列表 2024年07月23日 0 点赞 0 评论 204 浏览 评分:9.9
自定义函数求解水仙花数(C语言) 摘要:解题思路:水仙花数是3位整数,所以判断区间是包含100~999之间注意事项:水仙花数是各个位数的三次方之和等于它本身参考代码:#include <stdio.h> #include <math.h>…… 题解列表 2024年07月23日 0 点赞 0 评论 180 浏览 评分:0.0
字符统计两种方式(C语言) 摘要:方法区别:第一种:输出在自定义函数中第二种:输出在主函数中注意事项:使用scanf函数输入时,不能用 "%s" ,因为输入空格后输出只会显示空格之前的内容,所以要用 "%[^\n]" ,表示除了回车键…… 题解列表 2024年07月23日 0 点赞 0 评论 383 浏览 评分:0.0
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2024年07月23日 0 点赞 0 评论 1106 浏览 评分:9.9
素数筛选法(埃拉托斯特尼方法)的代码实现 摘要:首先,我们应当先复习一下原始的筛选法原理,先圈出2,并且划掉列表中2的倍数(即其他偶数),然后回到开始,圈出第一个没有被画掉的数,画掉剩下数表中他的所有倍数。重复这一过程足够多次数,剩下的没有被画掉的…… 题解列表 2024年07月23日 0 点赞 0 评论 278 浏览 评分:9.9
编写题解 2776: A*B问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 0 点赞 0 评论 201 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 1 点赞 0 评论 607 浏览 评分:9.9
编写题解 2749: Hello, World! 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ cout << "Hello world!" << endl;…… 题解列表 2024年07月23日 0 点赞 0 评论 487 浏览 评分:9.9
c语言牛顿迭代法求平方根 摘要:# C语言迭代法求平方根 迭代法也称牛顿迭代法,核心公式是**牛顿迭代公式**: $$x\_{n+1}=x\_{n}-\frac{f(x\_{n})}{f^{\prime}(x\_{n})}$$ …… 题解列表 2024年07月23日 0 点赞 0 评论 383 浏览 评分:0.0
2853: 字符替换 c++ (string) 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; const int N = 1e3; typedef…… 题解列表 2024年07月22日 0 点赞 0 评论 181 浏览 评分:0.0