[编程基础]输入输出练习之输出图案-题解(C语言代码) 摘要:解题思路:for循环语句;外嵌,内嵌来完成。注意事项:注意for的花括号,明白for的循环,*与行数的关系参考代码:#include <stdio.h> int main() { int i,j…… 题解列表 2020年11月18日 0 点赞 0 评论 654 浏览 评分:0.0
[编程入门]宏定义的练习-题解(C语言代码) 摘要:解题思路:题目很简单,看代码。注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; scanf("%d%d",&a,&…… 题解列表 2020年11月18日 0 点赞 0 评论 527 浏览 评分:0.0
[编程入门]带参数宏定义练习-题解(C语言代码) 摘要:解题思路:题目很简单,看代码。注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c; scanf("%d %d",&a,…… 题解列表 2020年11月18日 0 点赞 0 评论 436 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; sca…… 题解列表 2020年11月18日 0 点赞 0 评论 715 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; int…… 题解列表 2020年11月18日 0 点赞 0 评论 450 浏览 评分:0.0
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:/*有n个整数,使前面各数顺序向后移m个位置,最后m个数变成前面m个数。写一函数:实现以上功能,在主函数中输入n个数和输出调整后的n个数。输入输入数据的个数n n个整数 …… 题解列表 2020年11月17日 0 点赞 0 评论 654 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码)去掉空格的简单做法 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <cstdio>using namespace std;int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 1626 浏览 评分: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 评论 581 浏览 评分: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 评论 1683 浏览 评分:8.7
二级C语言-阶乘公式求职-题解(C语言代码) 摘要:```c #include int main() { double fact(int k); //函数声明 int n; double sum=0; …… 题解列表 2020年11月17日 0 点赞 0 评论 827 浏览 评分:0.0