【2024级新生必看】新生小白如何学好C语言--蓝桥杯C/C++国奖学长分享 摘要:新手小白如何学好C语言 学习C语言,和你是什么专业的没有关系,做智能车或者机器人,在智工坊不止有计算机、智能系的学长学姐,也有很多艺术系、管理系、建环系等你们的学长学姐都在这里,而且他们也做得很…… 文章列表 2024年10月19日 1 点赞 0 评论 262 浏览 评分:9.9
——Java知识点(常更新)———— 摘要:实例变量(方法)与类变量(方法)思维导图实例变量与类变量代码public class Main{ public static void main(String[] args){ …… 文章列表 2024年10月24日 0 点赞 0 评论 73 浏览 评分:9.9
涂色(区间dp) 摘要:[原题].(https://www.acwing.com/problem/content/2808/ "原题") #include using namespace std; i…… 文章列表 2024年10月24日 0 点赞 0 评论 51 浏览 评分:9.9
c++猜字游戏 摘要:#include"iostream" #include"random" using namespace std; int c(int min,int max){ random_devi…… 文章列表 2024年11月03日 0 点赞 1 评论 78 浏览 评分:9.9
去掉空格(C语言,不需指针) 摘要:#include<stdio.h>#include<string.h>int main(){ char arr[100]={'0'}; for(int i=0;i<100;i++){ …… 文章列表 2024年11月07日 0 点赞 0 评论 91 浏览 评分:9.9
小猫爬山 DFS 摘要:题目描述 翰翰和达达饲养了N只小猫,这天,小猫们要去爬山。 经历了千辛万苦,小猫们终于爬上了山顶,但是疲倦的它们再也不想徒步走下山了翰翰和达达只好花钱让它们坐索道下山。 索道上的缆车最大承重量为…… 文章列表 2024年11月22日 0 点赞 3 评论 237 浏览 评分:9.9
题目 1034: [编程入门]自定义函数之数字分离 摘要:#include#includeusing namespace std;void blank(char *a,char *b){ int la=strlen(a); int lb=2*la-1; fo…… 文章列表 2024年11月24日 0 点赞 0 评论 220 浏览 评分:9.9
题目 1008: [编程入门]成绩评定 摘要:#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n>=90){ …… 文章列表 2024年11月28日 0 点赞 0 评论 270 浏览 评分:9.9
题目 1001: [编程入门]第一个HelloWorld程序 摘要:#include<iostream>using namespace std;int main(){ printf("**************************\n"); prin…… 文章列表 2024年11月30日 0 点赞 0 评论 371 浏览 评分:9.9
求Sn=1!+2!+3!+4!+5!+…+n!之值,其中n是一个数字(n不超过20)。 摘要:#include<stdio.h> int main() { int n, i; long int fact = 1, Sn = 0;//此处用long int或者long l…… 文章列表 2018年03月17日 4 点赞 0 评论 2961 浏览 评分:10.0