用指针函数来写Hello World!(进阶版Hello World) 摘要:#include<bits/stdc++.h>using namespace std;const char* Return() { const char* g = "Hello,World!"…… 文章列表 2024年12月11日 0 点赞 0 评论 482 浏览 评分:0.0
哥德巴赫猜想 摘要:注意所求内容: #include #include // 判断一个数是否为素数 int isprime(int n) { int i, k;…… 文章列表 2024年12月15日 2 点赞 0 评论 706 浏览 评分:10.0
什么希拉里,不行 摘要: #include int main(){ int a[100]; // 定义整数数组用于存储输入的数字 int n,i,j,temp,sum…… 文章列表 2024年12月15日 1 点赞 0 评论 503 浏览 评分:10.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 评论 602 浏览 评分:10.0
贪吃蛇源码,想玩或者研究的拿去慢慢看吧 摘要:#include<stdio.h>#include<stdlib.h>#include<windows.h> #include<time.h>#include<conio.h> int X=60;//…… 文章列表 2024年12月16日 1 点赞 0 评论 804 浏览 评分:0.0
算数运算符的中后缀转换 摘要:#include<iostream>#include<algorithm>#include<cstring>#define max 11using namespace std;struct zzhs{…… 文章列表 2024年12月16日 0 点赞 0 评论 796 浏览 评分:0.0
单函数调用创建树 摘要:#include<iostream>#include<algorithm>using namespace std;struct cjs{ char data; struct cjs*next; str…… 文章列表 2024年12月19日 0 点赞 0 评论 495 浏览 评分:0.0
1018 n项之和 c++代码参考 摘要:#include <iostream> #include <iomanip> using namespace std; int main() { int N; cin >…… 文章列表 2024年12月20日 0 点赞 0 评论 1039 浏览 评分:0.0
精品文章 各编译器(编程软件)下载集合 摘要:方便各位同学编程入门,给大家提供了几乎全部常见的编译器的下载地址(百度网盘),方便大家直接拿去使用,亲测无广告可用,不必再东奔西走了,如下 各个编译器的安装、下载教程见:[编译器教程 ](htt…… 文章列表 2020年03月05日 10 点赞 16 评论 109199 浏览 评分:8.8
本周新学且认为有意义的c语言 摘要:数位之和#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>#define N 10…… 文章列表 2024年12月22日 0 点赞 0 评论 514 浏览 评分:0.0