防御力—详细注释,易懂版本 摘要:``` import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年05月19日 0 点赞 0 评论 595 浏览 评分:9.9
利用if对输出结果进行判断 摘要:解题思路:利用if判断输出结果即可注意事项:参考代码:#include<stdio.h>int main(){ int a,b,n; while(~scanf("%d%d", &a, &b…… 题解列表 2022年05月19日 0 点赞 0 评论 332 浏览 评分:0.0
带参数宏定义练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define reverse1(m) x2#define reverse2(n) x1int main(){ int x1,x2; s…… 题解列表 2022年05月19日 0 点赞 0 评论 470 浏览 评分:9.9
输入超过三位数的简单思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, s, g; scanf("%d", &a); b = a / 100; s…… 题解列表 2022年05月19日 0 点赞 0 评论 394 浏览 评分:0.0
编写题解 1033: [编程入门][C语言]自定义函数之字符提取 摘要:#include<stdio.h> void check(char a[]) { int i; int fg1=0,fg2=0,fg3=0,fg4=0,fg5=0;//在循环外定义,用来使…… 题解列表 2022年05月19日 0 点赞 0 评论 407 浏览 评分:9.9
[编程入门]C语言循环移位 摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp…… 题解列表 2022年05月19日 0 点赞 0 评论 453 浏览 评分:10.0
[编程入门]二进制移位练习 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<cmath>using namespace std;vector<int> arr;…… 题解列表 2022年05月19日 0 点赞 0 评论 322 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp…… 题解列表 2022年05月19日 0 点赞 0 评论 339 浏览 评分:0.0
数字逆序输出 摘要:解题思路:1.先定义一个长度为10的数组a[10] 2.利用for循环输入10个数字 3.利用for循环从后往前遍历输出数组注意事项:参考代码:#i…… 题解列表 2022年05月19日 1 点赞 0 评论 444 浏览 评分:9.9