1848 求输入数据绝对值 摘要:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ double a; while(cin…… 文章列表 2024年07月18日 0 点赞 0 评论 187 浏览 评分:0.0
Seq2Seq的学习总结 摘要:【原文1】:https://blog.csdn.net/sikh_0529/article/details/129148504 【原文2】:https://zhuanlan.zhihu.com/p/…… 文章列表 2024年07月19日 0 点赞 0 评论 336 浏览 评分:0.0
平均值计算解题思路及C代码 摘要:参考代码: #include int main() { char a[10]; int i,n=0,sum=0; fl…… 文章列表 2024年08月15日 0 点赞 0 评论 221 浏览 评分:0.0
dp:01背包 二维加一维 摘要://01背包:按照y总分析所写 用于学习记录 #include<iostream> using namespace std; const int N=1010; int v[N],w[N]…… 文章列表 2024年08月16日 0 点赞 0 评论 146 浏览 评分:0.0
dp:完全背包:三维,二维,一维 摘要://完全背包 #include<iostream> using namespace std; const int N=1010; int n,m; int v[N],w[N]; int…… 文章列表 2024年08月16日 0 点赞 0 评论 198 浏览 评分:0.0
贪吃蛇项目及C代码 摘要: #include #include #include #include #include #define ROW 22 //游戏区行…… 文章列表 2024年09月07日 0 点赞 0 评论 142 浏览 评分:9.9
自由落体距离计算解题思路及C代码 摘要: [========] 解题思路: 一、(1)题目描述:一球从M米高度自由下落,每次落地后返回原高度的一半,再落下。 …… 文章列表 2024年09月07日 0 点赞 0 评论 151 浏览 评分:9.9
【编程入门】温度转换 摘要:使用format格式或者直接输出的方式输出c=-40 1.获取输入的华氏温度 2.进行换算 3.输出摄氏温度 a=float(input()) c=5*(a-32)/9 #…… 文章列表 2024年09月08日 0 点赞 0 评论 169 浏览 评分:0.0
项目中遇到的问题 摘要:最近在写项目时,遇到了两个问题1、在项目中引入数据库之后,要使用数据库中的某一张表时会报一个错误:Unable to resolve table '表名' ;即无法找到此表。出现这个问…… 文章列表 2024年09月12日 0 点赞 0 评论 160 浏览 评分:0.0
[NOIP2001]装箱问题(c语言版) 摘要:1.数组索引的使用:在C语言中,数组索引是从0开始的。但是,你的代码中对v和dp数组的访问是从1开始的(v[i]和dp[j]在循环中从1开始遍历)。这可能导致未定义行为(访问数组边界之外的内存),因为…… 文章列表 2024年09月13日 0 点赞 5 评论 183 浏览 评分:8.3