C语言考试练习题_排列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void pai(int a,int b,int c){ int i,j,; int arr[3]={a,b,c}; …… 题解列表 2019年03月30日 0 点赞 0 评论 573 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEAP_YEAR(y) ((y%4==0) && (y%100!=0) || (y%400==0)) ? '…… 题解列表 2019年03月30日 0 点赞 0 评论 550 浏览 评分:0.0
蓝桥杯基础练习VIP-龟兔赛跑预测 (C++代码)很简单得一道题 摘要:解题思路:注意事项:我开始以为T事兔子R事乌龟然后只过了34(把题读好才是真的)参考代码:#include<bits/stdc++.h> using namespace std; int v1,v…… 题解列表 2019年03月30日 0 点赞 0 评论 820 浏览 评分:0.0
思路比较简单,简洁代码(C语言代码) 摘要:解题思路:如果是字符串的话,可能会有所改变参考代码:#include<stdio.h>int main(){ int a[9]; for(int i=0;i<10;i++) …… 题解列表 2019年03月30日 1 点赞 0 评论 753 浏览 评分:0.0
(递归)数列问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"long a[50];int n;long dfs(int);int main(){ scanf("%d",&n); a[1]=3; …… 题解列表 2019年03月30日 0 点赞 0 评论 854 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路: 一维数组的解法注意事项:参考代码:int main() { int i; int arr[20]; for (i = 0; i < 9; i += 3) scanf("…… 题解列表 2019年03月30日 0 点赞 0 评论 769 浏览 评分:0.0
蓝桥杯算法提高VIP-Torry的困惑(提高型) (C++代码)题的意思有点坑 摘要:解题思路:题的意思是好多个素数的积,然而开始我以为是前好多个素数的积注意事项:参考代码#include<bits/stdc++.h> using namespace std; long long …… 题解列表 2019年03月30日 0 点赞 0 评论 656 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)调用函数 摘要:解题思路:新手第一次写调用函数的注意事项:参考代码:#include<stdio.h> char fun(int m,char a[100],int n) { int i; for(i=m…… 题解列表 2019年03月31日 0 点赞 0 评论 566 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码)水一波 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int a,b; int l,p; int m…… 题解列表 2019年03月31日 0 点赞 0 评论 837 浏览 评分:0.0
蓝桥杯算法提高VIP-任意年月日历输出 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int a[13]={0,31,28,31,30,…… 题解列表 2019年03月31日 0 点赞 0 评论 822 浏览 评分:0.0