会打代码的浪漫,颜色可以随机变换 摘要:#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 评论 244 浏览 评分:9.9
1446-核桃的数量 摘要:# 1446-核桃的数量 思想: 就是求三个数的最小公倍数 ```c++ #include using namespace std; int lcm(int a,int b…… 文章列表 2021年11月26日 0 点赞 0 评论 309 浏览 评分: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 评论 255 浏览 评分: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 评论 255 浏览 评分:9.9
什么是指针,基本指针类型 摘要:总结:#include<stdio.h> int main()(int*p;//p是变量的名字,int *p变量存放的是int类型变量的地址//int *p不表示一个名字叫*p的变量//所谓int *…… 文章列表 2021年11月29日 0 点赞 0 评论 226 浏览 评分: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 评论 231 浏览 评分: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 评论 267 浏览 评分:9.9
c语言 快乐的源泉 摘要:兴趣是最好的老师,坚信这句话。c语言 罪恶的根源。。。哎 致敬2021,12,6,22:47,还在奋斗中的盲盒。。。…… 文章列表 2021年12月06日 0 点赞 0 评论 270 浏览 评分:9.9
1560-蓝桥杯算法提高VIP-计算器 摘要:# 1560-蓝桥杯算法提高VIP-计算器 ## 思想: 利用map的映射关系 1、设置map映射每一个数字状态 2、利用calculation()方法计算不同数字间变化所需的次数 3、…… 文章列表 2021年12月07日 0 点赞 0 评论 340 浏览 评分:9.9
cmake进阶之路一 摘要: 本系列只是记录自己学习cmake的历程,关于什么是cmake相信工作了很多年的同学c和c++深有体会,这里不做赘述。 声明:本系列由大量用例构成,基础知识不做概述,只对cmake文件做解…… 文章列表 2021年12月14日 0 点赞 0 评论 287 浏览 评分:9.9