二级C语言-自定义函数 递归简单C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>double f(int n){ if (n==0||n==1){ return…… 题解列表 2023年09月14日 0 点赞 0 评论 151 浏览 评分:0.0
c语言简单易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int ctof(int n){ int s; s=32+n*9/5; return s;}int main (){…… 题解列表 2023年09月14日 0 点赞 0 评论 195 浏览 评分:0.0
c语言简单,代码少,易懂!!! 摘要:解题思路:注意事项:该坐标行列元素是从1开始的!!!参考代码:#include <stdio.h>int main (){ int n; int max,max_i,max_j; i…… 题解列表 2023年09月14日 0 点赞 0 评论 150 浏览 评分:0.0
c语言简单 优解!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; //分别记录人数!!! a=b=c=0; int n; …… 题解列表 2023年09月14日 0 点赞 0 评论 199 浏览 评分:0.0
c语言简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>double f (int n){ if (n==0||n==1){ return 1; }else { …… 题解列表 2023年09月14日 0 点赞 0 评论 254 浏览 评分:0.0
C语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n, m,i,j; char name[11][21];…… 题解列表 2023年09月14日 0 点赞 0 评论 278 浏览 评分:0.0
第n小的质数(缩小循环) 摘要:参考代码: ```c #include #include int main() { int n; scanf("%d",&n); int a=2,k=0;//k是累计出现的质数 …… 题解列表 2023年09月14日 0 点赞 0 评论 344 浏览 评分:0.0
C语言自由下落距离问题 摘要:解题思路:每次反弹上升的高度为下降的高度的一半,高度为M,则第N次反弹的高度为M=M/2;每一次落地后反弹,球的路程为x=M*3注意事项:第五次落地时的反弹上去的路程不用算上参考代码:#include…… 题解列表 2023年09月15日 0 点赞 0 评论 171 浏览 评分:0.0
带参数宏定义练习 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月15日 0 点赞 0 评论 299 浏览 评分:0.0
C语言解法容易理解 摘要:解题思路:找到规律转化为简易的数学语言参考代码:#include<stdio.h>int main(){ int a; float b = 2; int c = 1; floa…… 题解列表 2023年09月15日 0 点赞 0 评论 158 浏览 评分:0.0