[编程入门]宏定义的练习-题解(C语言代码) 摘要:解题思路:题目很简单,看代码。注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; scanf("%d%d",&a,&…… 题解列表 2020年11月18日 0 点赞 0 评论 546 浏览 评分:0.0
[编程入门]带参数宏定义练习-题解(C语言代码) 摘要:解题思路:题目很简单,看代码。注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; scanf("%d %d",&a,…… 题解列表 2020年11月18日 0 点赞 0 评论 454 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; sca…… 题解列表 2020年11月18日 0 点赞 0 评论 733 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; int…… 题解列表 2020年11月18日 0 点赞 0 评论 472 浏览 评分:0.0
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:/*有n个整数,使前面各数顺序向后移m个位置,最后m个数变成前面m个数。写一函数:实现以上功能,在主函数中输入n个数和输出调整后的n个数。输入输入数据的个数n n个整数 …… 题解列表 2020年11月17日 0 点赞 0 评论 674 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码)去掉空格的简单做法 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <cstdio>using namespace std;int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 1649 浏览 评分:9.9
蓝桥杯算法提高VIP-交换Easy-题解(Python代码) 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())pp=list(map(int,input().split()))for i in range(0,b): …… 题解列表 2020年11月17日 0 点赞 0 评论 606 浏览 评分:6.0
[编程入门]三个数最大值-题解(C语言代码) 摘要:解题思路:if判断注意事项:条件参考代码:#include <stdio.h> int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); i…… 题解列表 2020年11月17日 0 点赞 2 评论 1700 浏览 评分:8.7
二级C语言-阶乘公式求职-题解(C语言代码) 摘要:```c #include int main() { double fact(int k); //函数声明 int n; double sum=0; …… 题解列表 2020年11月17日 0 点赞 0 评论 847 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C语言代码) 摘要:解题思路:根据题目一步一步来写答案;(暴力一点,需要什么就敲什么)注意事项:要有信心,一步一步走下去,不要想太多,很简单的;参考代码:#define _CRT_SECURE_NO_WARNINGS#i…… 题解列表 2020年11月17日 0 点赞 0 评论 722 浏览 评分:9.9