本周新学且认为有意义的c语言 摘要:数位之和#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>#define N 10…… 文章列表 2024年12月22日 0 点赞 0 评论 4203 浏览 评分:0.0
1018 n项之和 c++代码参考 摘要:#include <iostream> #include <iomanip> using namespace std; int main() { int N; cin >…… 文章列表 2024年12月20日 0 点赞 0 评论 39688 浏览 评分:0.0
单函数调用创建树 摘要:#include<iostream>#include<algorithm>using namespace std;struct cjs{ char data; struct cjs*next; str…… 文章列表 2024年12月19日 0 点赞 0 评论 1129 浏览 评分:0.0
算数运算符的中后缀转换 摘要:#include<iostream>#include<algorithm>#include<cstring>#define max 11using namespace std;struct zzhs{…… 文章列表 2024年12月16日 0 点赞 0 评论 885 浏览 评分:0.0
贪吃蛇源码,想玩或者研究的拿去慢慢看吧 摘要:#include<stdio.h>#include<stdlib.h>#include<windows.h> #include<time.h>#include<conio.h> int X=60;//…… 文章列表 2024年12月16日 1 点赞 0 评论 910 浏览 评分:0.0
简单的A+B(C++和Python和Java) 摘要:C++: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 文章列表 2024年12月16日 1 点赞 0 评论 615 浏览 评分:10.0
什么希拉里,不行 摘要: #include int main(){ int a[100]; // 定义整数数组用于存储输入的数字 int n,i,j,temp,sum…… 文章列表 2024年12月15日 1 点赞 0 评论 513 浏览 评分:10.0
哥德巴赫猜想 摘要:注意所求内容: #include #include // 判断一个数是否为素数 int isprime(int n) { int i, k;…… 文章列表 2024年12月15日 2 点赞 0 评论 721 浏览 评分:10.0
用指针函数来写Hello World!(进阶版Hello World) 摘要:#include<bits/stdc++.h>using namespace std;const char* Return() { const char* g = "Hello,World!"…… 文章列表 2024年12月11日 0 点赞 0 评论 496 浏览 评分:0.0
缓存穿透及解决方案 摘要:基本概念缓存系统的主要作用是存储经常访问的数据,以减少对后端存储系统(如数据库)的访问压力。当有一个请求查询数据时,系统首先会在缓存中查找。如果缓存中存在该数据,就直接返回缓存中的数据;如果缓存中没有…… 文章列表 2024年12月11日 0 点赞 0 评论 315 浏览 评分:0.0