自定义函数之字符类型统计java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月13日 0 点赞 0 评论 553 浏览 评分:0.0
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ for(int i=100;i<=999;i++){ int n=i, s…… 题解列表 2023年09月14日 0 点赞 0 评论 232 浏览 评分:0.0
自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main() { int m, n; float ret=0.0, tmp=0.0, sum…… 题解列表 2023年09月14日 0 点赞 0 评论 253 浏览 评分:0.0
C语言完数判断代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int max;//最大数 int num2[100] = {0};//因素…… 题解列表 2023年09月14日 0 点赞 0 评论 343 浏览 评分:0.0
二级C语言-自定义函数 递归简单C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>double f(int n){ if (n==0||n==1){ return…… 题解列表 2023年09月14日 0 点赞 0 评论 250 浏览 评分: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 评论 298 浏览 评分:0.0
c语言简单,代码少,易懂!!! 摘要:解题思路:注意事项:该坐标行列元素是从1开始的!!!参考代码:#include <stdio.h>int main (){ int n; int max,max_i,max_j; i…… 题解列表 2023年09月14日 0 点赞 0 评论 235 浏览 评分:0.0
c语言简单 优解!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; //分别记录人数!!! a=b=c=0; int n; …… 题解列表 2023年09月14日 0 点赞 0 评论 303 浏览 评分:0.0
c语言简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>double f (int n){ if (n==0||n==1){ return 1; }else { …… 题解列表 2023年09月14日 1 点赞 0 评论 387 浏览 评分: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 评论 398 浏览 评分:0.0