平均值计算python 摘要:解题思路:傻子都会注意事项:傻子都会参考代码:a=list(map(int,input().split())) b=0 for i in a: b+=i c=b/10 d=0 fo…… 题解列表 2022年07月15日 0 点赞 0 评论 436 浏览 评分:9.9
有规律的数列求和 摘要:解题思路: 注意a和b的赋值 参考代码: #include int main() { float a = 2, b = 1, sn …… 题解列表 2022年07月16日 0 点赞 0 评论 342 浏览 评分:9.9
猴子吃桃的问题(for循环) 摘要: 思路: 虽然是n天,但是实际就循环n-1次,从最后一天开始向第一天推而不是从第一天向最后一天推 代码: #include int main() {…… 题解列表 2022年07月16日 0 点赞 0 评论 287 浏览 评分:9.9
二级C语言-公约公倍(最单纯的for循环) 摘要: #include int main(){ int m, n; int k = 0, s = 0; sca…… 题解列表 2022年07月16日 0 点赞 0 评论 351 浏览 评分:9.9
数字逆序输出(C语言) 摘要: #include int main(){ int a[10] = { 0 }; for (int i = 0; i < …… 题解列表 2022年07月16日 0 点赞 2 评论 226 浏览 评分:9.9
数据结构-字符串插入(C语言) 摘要: #include #include int main() { char a[130],b[130]; int n; …… 题解列表 2022年07月16日 0 点赞 1 评论 645 浏览 评分:9.9
信息学奥赛一本通T1538-清点人数-题解(各语言代码) 摘要:**C** ```c #include #include int main(){ char c; int n,k,m,p; scanf("%d%d",&n,&k); int*l…… 题解列表 2022年07月16日 0 点赞 0 评论 759 浏览 评分:9.9
自定义函数处理最大公约数与最小公倍数(C语言简单粗暴) 摘要: #include int gys(int m, int n); int gbs(int m, int n); int main() { …… 题解列表 2022年07月16日 0 点赞 0 评论 299 浏览 评分:9.9
走方格 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年07月17日 0 点赞 0 评论 379 浏览 评分:9.9
不利用数组的java解法 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2022年07月17日 0 点赞 0 评论 324 浏览 评分:9.9