[编程入门]数组插入处理-题解(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 评论 273 浏览 评分:0.0
[编程入门]15行搞定字符串统计-题解(C++代码) 摘要:解题思路:字符串简单问题。 注意事项:**小写字母也是字母记得写 输入空格要用gets系列才能把空格读进来。 ** 参考代码: ```cpp #include using names…… 题解列表 2021年02月04日 0 点赞 0 评论 361 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(Java代码) 摘要:参考代码:import java.util.Scanner; public class Main12 { /** * @param args */ public st…… 题解列表 2021年02月04日 0 点赞 0 评论 324 浏览 评分:9.9
[编程入门]三个数找最大值-题解(C语言代码) 摘要:解题思路:反正你们个个是天才,吾拜拜注意事项:没有什么好说的,字母别错参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d%d%d"…… 题解列表 2021年02月04日 0 点赞 0 评论 215 浏览 评分:6.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:字符串+指针传参 注意事项: 参考代码: ```cpp #include using namespace std; char s[10]; void fun(char …… 题解列表 2021年02月04日 0 点赞 0 评论 240 浏览 评分: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 评论 1040 浏览 评分:9.9
[编程入门]有规律的数列求和-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main() { int N; float sum;…… 题解列表 2021年02月04日 0 点赞 0 评论 238 浏览 评分:0.0
[编程入门]10行解决字符提取-题解(C++代码) 摘要:解题思路:字符串问题 注意事项:无 参考代码: ```cpp #include using namespace std; char s[10000]; int main(){…… 题解列表 2021年02月04日 0 点赞 0 评论 402 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C++代码) 摘要:解题思路:本题可以使用switch语句,对输入的字符串的每一项进行判断,如果与元音字母相同,那么就输出此字符.所以我们先定义一个数组,用来装元音字母.在输入一个字符串,从首位开始判断,如果s[i]是元…… 题解列表 2021年02月04日 0 点赞 1 评论 285 浏览 评分:6.0
[编程入门]二进制移位练习-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int j,a,i,str[20]; int sum=0; scanf("%d",&a); for(i=0;a!…… 题解列表 2021年02月04日 0 点赞 1 评论 794 浏览 评分:8.0