大神老白!!!!!!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a = 0; int arr[100]; while (~scanf("…… 题解列表 2023年12月10日 0 点赞 1 评论 371 浏览 评分:9.9
分段函数求值 摘要:解题思路:考虑分段函数的不同区间所对应的函数关系式。注意事项:且用&参考代码:import java.util.Scanner;public class Main { public static…… 题解列表 2023年12月10日 0 点赞 0 评论 548 浏览 评分:9.9
程序员的表白 C语言超简洁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void main(){ int a = 0; while (~scanf("%d", &a)) { for (int i = 0;…… 题解列表 2023年12月10日 0 点赞 0 评论 396 浏览 评分:9.9
震宇大神的杀毒软件(C语言)解析详细 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int n = 0; //n表示每行有多少数字 int arr[100]; //存放数字 while …… 题解列表 2023年12月10日 0 点赞 0 评论 408 浏览 评分:9.9
钟神赛车 给大家一个简单的代码C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, arr[100] = { 0 }; while (~scanf("%d", &n…… 题解列表 2023年12月10日 1 点赞 0 评论 379 浏览 评分:9.9
C语言!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; while (~scanf("%d%d%d", &a, &b, &c)) { if …… 题解列表 2023年12月10日 0 点赞 0 评论 314 浏览 评分:9.9
斐波那契数列(递归函数解法)python 摘要:解题思路:菲波那契数列的定义是数列的第一个和第二个数都为1,接下来每个数都等于前面两个数之和。根据这个定义,我们可以使用递推的方式计算菲波那契数列中第k个数的大小。注意事项:递归函数要注意结束语句,设…… 题解列表 2023年12月10日 0 点赞 0 评论 579 浏览 评分:9.9
是个人就能懂,不服来辩 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d%d%d%d%d%d%d%d%d%d",&a…… 题解列表 2023年12月10日 0 点赞 0 评论 311 浏览 评分:9.9
合法c标识符 摘要:解题思路:注意事项:参考代码://用标记法 #include<stdio.h> #include<string.h>//用来调出函数srtlen,以此定义数组长度 int main() {…… 题解列表 2023年12月10日 0 点赞 0 评论 322 浏览 评分:9.9
暴力穷举找最大公约数和最小公倍数 摘要:首先感谢指正,我的第一代代码考虑不全,虽然能过测试,但是出现特殊值就要完蛋。这是我的第一代#include<stdio.h> int main() { int a,b,t=1; scanf…… 题解列表 2023年12月10日 0 点赞 0 评论 276 浏览 评分:9.9