1034题: 自定义函数之数字分离 摘要:# 自己写的代码 ```c #include int main(){ char a[5]; gets(a); for(int i=0;i…… 题解列表 2023年07月02日 0 点赞 0 评论 175 浏览 评分:0.0
1033题: 自定义函数之字符提取 摘要:# 自己写的代码 ```c #include #include void fun(a[]){ char b[20]; } int main() { ch…… 题解列表 2023年07月02日 0 点赞 0 评论 198 浏览 评分:0.0
判断第几天 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int y, m, d; while (scanf("%d/%d/%d", &y, &m, &d…… 题解列表 2023年07月02日 0 点赞 0 评论 202 浏览 评分:0.0
自定义函数 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;package Demon2;//题目1066import java.util.Scanner;public class…… 题解列表 2023年07月02日 0 点赞 0 评论 190 浏览 评分:0.0
分段函数1067 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 测试 { public static void main(String [] args)…… 题解列表 2023年07月02日 0 点赞 0 评论 186 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct prut{ char MC[101]; double DJ; int ML;};int main(){ …… 题解列表 2023年07月02日 0 点赞 0 评论 206 浏览 评分:0.0
题目 1434: 蓝桥杯历届试题-回文数字题解 摘要:1.解题思路先把每个从10000~999999的数都查一遍,输出和为n且是回文数的。确定回文数的方法:有一个数,例如t=i=1331,把末位放到num的末尾,当t小于1时停止。(1331,0)->(1…… 题解列表 2023年07月02日 0 点赞 0 评论 231 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int maxmum(int x, int y){ return x > y ? x : y;…… 题解列表 2023年07月01日 0 点赞 0 评论 248 浏览 评分:0.0
偶数求和利用数组解决 摘要:解题思路:利用数组的思路,通过索引注意事项:参考代码:#include <stdio.h> int main() { int n, m,i,j; while (scanf("%d…… 题解列表 2023年07月01日 0 点赞 0 评论 191 浏览 评分:9.9
最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,a; cin>>n;…… 题解列表 2023年07月01日 0 点赞 0 评论 168 浏览 评分:0.0