用C语言简单的思路来解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,h,count=0;//i为数组下标,h为陶陶高度,count为摘下来的果子个…… 题解列表 2023年12月15日 0 点赞 0 评论 153 浏览 评分:0.0
题解 1023: [编程入门]选择排序(冒泡排序 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ int temp; int ar…… 题解列表 2023年12月15日 0 点赞 0 评论 159 浏览 评分:0.0
题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ int sum0 = 0; int s…… 题解列表 2023年12月15日 0 点赞 0 评论 211 浏览 评分:9.9
Pell数列(C语言) 摘要:参考代码: ```c #include int m(int k) { int sum=0; int a1=1,a2=2; if(k==1) { …… 题解列表 2023年12月15日 0 点赞 0 评论 370 浏览 评分:0.0
冒泡排序。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; for(int i=0;i<10;i++) { scanf…… 题解列表 2023年12月15日 0 点赞 0 评论 186 浏览 评分:9.9
.................... 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); for(int i=2;i<n;i++) …… 题解列表 2023年12月14日 0 点赞 0 评论 138 浏览 评分:9.9
略显生疏。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double n=0,change,k=0; scanf("%lf"…… 题解列表 2023年12月14日 0 点赞 0 评论 118 浏览 评分:0.0
................ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum=1; scanf("%d",&n); for(int i=0;i<n-1;…… 题解列表 2023年12月14日 0 点赞 0 评论 156 浏览 评分:0.0
字符替换(指针) 摘要:解题思路:注意事项:参考代码: #include <stdio.h>#include<string.h>int main(){ char s[100]; char…… 题解列表 2023年12月14日 0 点赞 0 评论 536 浏览 评分:9.9
代码放这里了不解释了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double m,n,sum=0; scanf("%lf %lf",&m,&n); sum+=…… 题解列表 2023年12月14日 0 点赞 0 评论 198 浏览 评分:9.9