自定义函数之数字后移 摘要:#include<stdio.h>void run_run(int arr[],int brr[],int a,int c){ int b=0; for(b=0;b<a;b++) …… 文章列表 2021年11月22日 0 点赞 0 评论 201 浏览 评分:9.9
1514-夺宝奇兵 摘要:# 1514-夺宝奇兵 **dp思想:** 每个数字他只可能从下面或者右下角走上来 所以我们只需要从这两个位置判断哪个比较大就好了 因此状态方程为f[i][j]=max(f[i+1][j]+f…… 文章列表 2021年11月22日 0 点赞 0 评论 183 浏览 评分:9.9
母牛的故事 摘要:代码:# include<stdio.h>int fun(int n){ if(n<=3) return n; else return fun(n-1)+fun(n-3);…… 文章列表 2021年11月23日 0 点赞 0 评论 173 浏览 评分:9.9
会打代码的浪漫,颜色可以随机变换 摘要:#include<stdio.h>#include<Windows.h>int main(){ float x,y,a; for(y=1.5f;y>-1.5f;y-=0.1f) { for(x=-1…… 文章列表 2021年11月24日 0 点赞 1 评论 200 浏览 评分:9.9
1446-核桃的数量 摘要:# 1446-核桃的数量 思想: 就是求三个数的最小公倍数 ```c++ #include using namespace std; int lcm(int a,int b…… 文章列表 2021年11月26日 0 点赞 0 评论 246 浏览 评分:9.9
盐水的故事 摘要:#include<stdio.h>int main(){ double vul,d,a; long b,c=0,e=0,count=0; scanf("%lf%lf",&vul,&d…… 文章列表 2021年11月28日 0 点赞 0 评论 133 浏览 评分:9.9
1115-DNA(c语言) 摘要:#include<stdio.h> #define N 100 void f(int a,int b) { int m=0; char P[N][N]; for(int i=0;i<…… 文章列表 2021年11月29日 0 点赞 0 评论 207 浏览 评分:9.9
什么是指针,基本指针类型 摘要:总结:#include<stdio.h> int main()(int*p;//p是变量的名字,int *p变量存放的是int类型变量的地址//int *p不表示一个名字叫*p的变量//所谓int *…… 文章列表 2021年11月29日 0 点赞 0 评论 186 浏览 评分:9.9
1128- 插入前面 摘要:审题!!!第一行1个正整数:N,范围在[1,100]。 第二行N个不同的正整数:范围在[1,10000]。 第三行2个正整数a和x。x范围在[1,N]。#include<bits/stdc++.h> …… 文章列表 2021年11月30日 0 点赞 0 评论 181 浏览 评分:9.9
成绩输出 while if函数的使用 摘要:#include<stdio.h>int main(){ int x; while(scanf("%d",&x)==1) { if(x>=90&&x<=100) …… 文章列表 2021年12月02日 0 点赞 0 评论 203 浏览 评分:9.9