[编程入门]三个数最大值-题解(C语言代码) 摘要:解题思路:始终保持a为最大值注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d%d%d", &a, &b ,&c);…… 题解列表 2021年02月04日 0 点赞 0 评论 194 浏览 评分:0.0
[编程入门]第一个HelloWorld程序!-题解(C语言代码) 摘要:解题思路:三个都是printf注意事项:26个*一个都不能少,复制也行参考代码:#include<stdio.h> int main() { …… 题解列表 2021年02月04日 0 点赞 0 评论 155 浏览 评分:0.0
[编程入门]数组插入处理-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a[9],n,i,b[10],t,j; for(i=…… 题解列表 2021年02月04日 0 点赞 0 评论 240 浏览 评分:0.0
[编程入门]15行搞定字符串统计-题解(C++代码) 摘要:解题思路:字符串简单问题。 注意事项:**小写字母也是字母记得写 输入空格要用gets系列才能把空格读进来。 ** 参考代码: ```cpp #include using names…… 题解列表 2021年02月04日 0 点赞 0 评论 332 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(Java代码) 摘要:参考代码:import java.util.Scanner; public class Main12 { /** * @param args */ public st…… 题解列表 2021年02月04日 0 点赞 0 评论 296 浏览 评分:9.9
[编程入门]三个数找最大值-题解(C语言代码) 摘要:解题思路:反正你们个个是天才,吾拜拜注意事项:没有什么好说的,字母别错参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d%d%d"…… 题解列表 2021年02月04日 0 点赞 0 评论 198 浏览 评分:6.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:字符串+指针传参 注意事项: 参考代码: ```cpp #include using namespace std; char s[10]; void fun(char …… 题解列表 2021年02月04日 0 点赞 0 评论 214 浏览 评分:0.0
P1000-题解(C语言代码,超简单) 摘要:大写的简单#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n",…… 题解列表 2021年02月04日 0 点赞 0 评论 1014 浏览 评分:9.9
[编程入门]有规律的数列求和-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main() { int N; float sum;…… 题解列表 2021年02月04日 0 点赞 0 评论 212 浏览 评分:0.0
[编程入门]10行解决字符提取-题解(C++代码) 摘要:解题思路:字符串问题 注意事项:无 参考代码: ```cpp #include using namespace std; char s[10000]; int main(){ …… 题解列表 2021年02月04日 0 点赞 0 评论 381 浏览 评分:0.0