1049:[编程入门]结构体之时间设计 摘要:```c #include typedef struct YMD{ int YEAR; int MON; int DAY; }YMD; int judge_leap(YMD da…… 题解列表 2022年05月09日 0 点赞 0 评论 330 浏览 评分:0.0
身份证号码升级 (Java代码) 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年05月09日 0 点赞 0 评论 369 浏览 评分:9.9
积木画(c++) 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e7+5; const int MOD=1e9…… 题解列表 2022年05月09日 0 点赞 0 评论 1542 浏览 评分:6.0
Tom数的解法 摘要:# 1、定义 ```cpp #include #include using namespace std; char *str; int tom; ``` # 2、输入 看似很困难,其…… 题解列表 2022年05月09日 0 点赞 0 评论 933 浏览 评分:9.9
拼接平方数 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年05月09日 0 点赞 0 评论 364 浏览 评分:9.9
X进制减法(C++) 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e5+5; const int MOD=1e9…… 题解列表 2022年05月09日 0 点赞 1 评论 1692 浏览 评分:8.4
[编程入门]有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;float seqSum(short n); //有规律数列求和int main()…… 题解列表 2022年05月09日 0 点赞 0 评论 298 浏览 评分:0.0
[编程入门]求和训练 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c ; cin>>a>>b>>c…… 题解列表 2022年05月09日 0 点赞 0 评论 273 浏览 评分:0.0
[编程入门]利润计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { int profit = 0; float a…… 题解列表 2022年05月09日 0 点赞 0 评论 432 浏览 评分:9.9
[编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { int x = 0; cin >> x; …… 题解列表 2022年05月09日 0 点赞 0 评论 611 浏览 评分:9.9