沸羊羊 C# 1434: 蓝桥杯历届试题-回文数字 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; int q=1; for(i…… 题解列表 2022年08月10日 0 点赞 0 评论 380 浏览 评分:0.0
沸羊羊 C# 1116: IP判断 摘要:```cpp #include using namespace std; int main() { int a[4]={0}; string s; while(cin>>…… 题解列表 2022年08月10日 0 点赞 0 评论 450 浏览 评分:0.0
Java语言找规律轻松解决 摘要:# 找规律即可 **N=3** print :424 **N=4** print :6446 **N=5** print :86468 import java.uti…… 题解列表 2022年08月10日 0 点赞 0 评论 604 浏览 评分:0.0
水仙花数--问题1--C语言 摘要:解题思路:本题使用的是数组以及求出各数字的组成注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int num = 0; int i; in…… 题解列表 2022年08月10日 0 点赞 1 评论 926 浏览 评分:0.0
平均值计算以及求大于平均数的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int num[10]; int i, n, j = 0; int average = 0; int sum …… 题解列表 2022年08月10日 0 点赞 0 评论 456 浏览 评分:0.0
编写题解 1036: [编程入门]带参数宏定义练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int exchange(int m,int n) { int t; t=m;//交换 …… 题解列表 2022年08月10日 0 点赞 0 评论 424 浏览 评分:0.0
编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int tongji(char a[]) { int m,n,x,y; …… 题解列表 2022年08月10日 0 点赞 0 评论 528 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:用一个数组存放四位数的各个位上的数,再逆序输出注意事项:参考代码:#include <stdio.h> int kongge(int a) { int b[4]; …… 题解列表 2022年08月10日 0 点赞 0 评论 365 浏览 评分:0.0
不会简单的写法 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo…… 题解列表 2022年08月10日 0 点赞 0 评论 530 浏览 评分:9.9
这种题还需要看题解吗? 摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001): if i%2==0 and i%3==0 and i%7==0: print(i)…… 题解列表 2022年08月10日 0 点赞 0 评论 616 浏览 评分:9.9