2018年第九届蓝桥杯省赛 全球变暖(贡献法)--------------C语言——菜鸟级 摘要:标题:全球变暖你有一张某海域NxN像素的照片,”.”表示海洋、”#”表示陆地,如下所示:……. .##…. .##…. ….##. ..####. …###. …….其中”上下左右”四个方向上连在一起…… 文章列表 2019年02月13日 29 点赞 11 评论 1508 浏览 评分:9.9
the problem 3n+1 摘要:#include "iostream" using namespace std; int main() { int m,n,max,tmp,cnt; while(cin >> m >> n)…… 文章列表 2019年02月13日 0 点赞 0 评论 713 浏览 评分:0.0
书上的纵横图 摘要:#include <stdio.h> #include <stdlib.h> #define MAXSIZE 20 int main() { int m, magic[MAXSIZE…… 文章列表 2019年02月13日 0 点赞 0 评论 609 浏览 评分:0.0
算术表达式求值(有括号) 摘要:#include <stdio.h> #include <string.h> #include <stdlib.h> #include<windows.h> typedef struct _e…… 文章列表 2019年02月13日 1 点赞 0 评论 840 浏览 评分:5.7
数组和链表在原空间逆序 摘要:#include<stdio.h> #include<stdlib.h> void array_sequence()//顺序存储(数组)逆序的函数 { int len,i,j; scanf…… 文章列表 2019年02月13日 0 点赞 0 评论 563 浏览 评分:9.9
凑算式(蓝桥杯真题) 摘要:/*凑算式 B DEFA + --- + ------- = 10 C GHI 这个算式中A~I代表0~9的数字,不同的字母代表不同的数字。*/ #inclu…… 文章列表 2019年02月13日 0 点赞 0 评论 724 浏览 评分:0.0
大数减法运算 摘要:#include <stdio.h> #include <string.h> int compare(int*,int*); void swap(int* ,int* )…… 文章列表 2019年02月13日 0 点赞 0 评论 449 浏览 评分:0.0
大数加法运算 摘要:#include "stdio.h" #include "string.h" int main() { char s1[100],s2[100]; int m,n; int c,i,k; …… 文章列表 2019年02月13日 0 点赞 0 评论 178 浏览 评分:0.0
三角形填数顺时针增大 摘要:效果图如下:代码如下:#include "iostream" using namespace std; const int MAXSIZE = 10; int array[MAXSIZE+1][…… 文章列表 2019年02月13日 0 点赞 0 评论 504 浏览 评分:0.0
c++动态开辟一维数组 摘要:#include <iostream>//#include "cmath"using namespace std;int main(){ int size; cin >> size; int *a…… 文章列表 2019年02月12日 0 点赞 0 评论 658 浏览 评分:0.0