字符逆序-题解(C语言代码) 摘要:字符串的输入方法: 格式1:gets(字符数组名); //可以输入带有空格的字符 格式2:scanf("%s", 字符数组名); //由于scanf()输入时遇到空格,回车,制表符会结束,…… 题解列表 2019年07月17日 0 点赞 0 评论 967 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C++代码) 摘要://细节问题,注意以下就好,代码如下 #include using namespace std; struct student{ string studentNumber; strin…… 题解列表 2019年07月17日 0 点赞 0 评论 760 浏览 评分:0.0
蛇行矩阵-题解(C语言代码) 摘要:解题思路: 1.输出指定矩阵问题常用找规律法 2.如图  定义一个函数来输出一行的数字,…… 题解列表 2019年07月17日 0 点赞 0 评论 802 浏览 评分:0.0
Minesweeper -题解(C++代码) 摘要:```cpp #include #include #include using namespace std; void chang2(char arr[1000][1000],int n…… 题解列表 2019年07月17日 0 点赞 0 评论 1135 浏览 评分:0.0
发工资咯-题解(C语言代码) 摘要:``` #include int main(){ int c,n,m; while(scanf("%d",&n)!=EOF&&n){ c=0; …… 题解列表 2019年07月17日 0 点赞 0 评论 770 浏览 评分:0.0
[编程入门]自定义函数处理素数-题解(C语言代码) 摘要:```c #include void ss(int x) { int i; for(i=2;i…… 题解列表 2019年07月17日 0 点赞 0 评论 890 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C语言代码)。。。。哇塞,编辑器居然升级了,看起来好高级的亚子,赶紧尝试一波!! 摘要:```c #include int main() { int n; int a[100]; int b[100]; int i,j,sum=0; scanf("%d",&n)…… 题解列表 2019年07月18日 0 点赞 1 评论 707 浏览 评分:0.0
C二级辅导-等差数列-题解(C语言代码) 摘要:#include int main() { int a,b=2,c=0,d=0; // 赋予初始值 b = 2; 是等差数列第一位; scanf ("…… 题解列表 2019年07月18日 0 点赞 0 评论 1201 浏览 评分:0.0
C二级辅导-求偶数和-题解(C语言代码) 摘要: int main() { int a,b=0,c=0; scanf ("%d",&a); for (b=0;b…… 题解列表 2019年07月19日 0 点赞 0 评论 1000 浏览 评分:0.0
Minesweeper -题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int row, column; int n = 0; whi…… 题解列表 2019年07月19日 0 点赞 0 评论 727 浏览 评分:0.0