二级C语言-等差数列 摘要:#include<stdio.h> int main() { int n,i,sum,An; scanf("%d",&n); An = 2+(n-1)*3;//此行为等差数列通项公式…… 文章列表 2022年03月21日 0 点赞 0 评论 338 浏览 评分:9.9
贪吃蛇(修改版) 摘要:#include<stdio.h>#include<time.h>#include<windows.h>#include<stdlib.h>#define U 1#define D 2#define …… 文章列表 2022年03月21日 0 点赞 0 评论 604 浏览 评分:9.9
修改后 剑士 摘要:#include<bits/stdc++.h> #include<unistd.h> using namespace std; int main() { int meipy; cout…… 文章列表 2022年03月20日 0 点赞 0 评论 750 浏览 评分:9.0
[编程入门]数字的处理与判断 摘要:#include<stdio.h> int main() { int a; scanf("%d",&a); if(a/10000>=1) { printf("5\n");//输…… 文章列表 2022年03月19日 0 点赞 2 评论 260 浏览 评分:9.9
[编程入门]三个数字的排序 摘要:#include<stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b && a>c) { …… 文章列表 2022年03月19日 0 点赞 0 评论 332 浏览 评分:6.0
[编程入门]利润计算 摘要:#include<stdio.h> int main() { float award; scanf("%f",&award); if(award<100000) …… 文章列表 2022年03月18日 0 点赞 0 评论 224 浏览 评分:0.0
分段函数求值 摘要:#include<stdio.h> int main() { int a; scanf("%d",&a); if(a<1) printf("%d",a); …… 文章列表 2022年03月18日 0 点赞 0 评论 247 浏览 评分:0.0
三个数找最大值 摘要:#include<stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b) …… 文章列表 2022年03月18日 0 点赞 0 评论 359 浏览 评分:9.9
蓝桥杯直线题解(摘自ACWING) 摘要:#include<bits/stdc++.h>using namespace std;typedef long long ll;typedef long double ld;const int N=2…… 文章列表 2022年03月18日 0 点赞 0 评论 435 浏览 评分:0.0
俄罗斯方块 摘要:#include<bits/stdc++.h> using namespace std; int block00[4][4] = { { 10,0,0,0 },{ 1,1,1,1 },{ 0,…… 文章列表 2022年03月13日 0 点赞 2 评论 400 浏览 评分:7.3