C语言训练-斐波纳契数列 (C语言代码)递归 摘要: 1:把斐波纳契数列,分为两部分,前面的两个1,以及后面的部分,把这两部,分开输出; 2:输出个数为1,则输出:1,输出个数为2,则输出:1 3:其他的采用递归;这题还可…… 文章列表 2022年02月19日 0 点赞 0 评论 260 浏览 评分:9.9
精品文章 one-shot learning 摘要:# one-shot learning ### 引言 今天来给大家介绍一种深度学习网络。在介绍之前,先来给大家聊一聊题外话。 相信大家都学过cnn卷积神经网络吧,知道卷积神经网络包含卷积层、池化…… 文章列表 2022年02月27日 0 点赞 0 评论 345 浏览 评分:9.9
排序好的10个整数;(java) 摘要:通过冒泡排序的解法进行解答import java.util.*; public class Main { public static void main(String[] args) { …… 文章列表 2022年03月01日 0 点赞 0 评论 485 浏览 评分:9.9
求Sn=1!+2!+3!+4!+5!+…+n!之值,其中n是一个数字(n不超过20)。(java) 摘要:这种解法可以求出最后的答案,就是在提交之后显示答案错误,可以借鉴import java.util.*; public class Main { public static void main…… 文章列表 2022年03月01日 0 点赞 0 评论 440 浏览 评分:9.9
冒泡排序---- 摘要:#include <iostream>using namespace std;void maopao(int a[],int n){ for (int i = 1; i < n; ++i) { …… 文章列表 2022年03月04日 0 点赞 0 评论 142 浏览 评分:9.9
算法学习资料推荐 摘要:> 今天这篇文章是针对刚学习算法的小白 希望小白会喜欢我推荐的这套课程 - Java 数据结构与算法【尚硅谷-韩顺平老师】 { cout<<" 你在一片黑暗中醒来,突然,一束光照了进来。"; cout<<"你非常疑惑…… 文章列表 2022年03月09日 0 点赞 0 评论 241 浏览 评分:9.9
贪吃蛇(流畅版) 摘要:#include#include#include#include#define U 1 #define D 2 #define L 3 #define R 4 //蛇的状态,U:上 ;D:下;L…… 文章列表 2022年03月11日 0 点赞 0 评论 450 浏览 评分:9.9
猜拳(youVScomputer) 摘要:#include<iostream>#include<cstdlib>#include<ctime>using namespace std;int main(){ int c,p;//定义电脑(c),…… 文章列表 2022年03月11日 0 点赞 0 评论 215 浏览 评分:9.9
打怪鬼脸 做鬼脸 摘要:#include<bits/stdc++.h>#include<conio.h>#include<windows.h>using namespace std;double shanghai[20]={…… 文章列表 2022年03月11日 0 点赞 1 评论 241 浏览 评分:9.9