[编程入门]结构体之时间设计 极简利用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int days(int i){ int t=0; int num=0; int a[13]={0,31,28,31,…… 题解列表 2024年12月26日 0 点赞 0 评论 533 浏览 评分:0.0
火焰 烧尽 摘要:解题思路: 完全背包问题注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int n; in…… 题解列表 2024年12月26日 0 点赞 0 评论 127 浏览 评分:0.0
最普通的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int strcmp_(char a[],char b[]){ int len1,len2; …… 题解列表 2024年12月27日 0 点赞 0 评论 136 浏览 评分:0.0
无聊的星期五 摘要:解题思路:注意事项:#include <stdio.h> #include<stdlib.h> int main() { for (int i = 1000; i < 9999;i++) {…… 题解列表 2024年12月27日 0 点赞 0 评论 442 浏览 评分:0.0
无聊的星期五 摘要:解题思路:注意事项:#include <stdio.h> #include<stdlib.h> int main() { int x, y; scanf_s("%d %d", &x, &…… 题解列表 2024年12月27日 0 点赞 0 评论 447 浏览 评分:0.0
无聊的星期五 摘要:#include <stdio.h> #include<stdlib.h> int main() { char c; int sum = 0; while ((c = getchar…… 题解列表 2024年12月27日 0 点赞 0 评论 386 浏览 评分:0.0
1767: 循环入门练习4题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int sum=0; int n; cin…… 题解列表 2024年12月28日 0 点赞 0 评论 101 浏览 评分:0.0
1768: 循环入门练习5题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(in…… 题解列表 2024年12月28日 0 点赞 0 评论 180 浏览 评分:0.0
佳肴荟萃很快就来一句 摘要:加油了解题思路:注意从后面逐个移动注意事项:参考代码: #include<stdio.h> int main(void) { int a[10]; int i; f…… 题解列表 2024年12月28日 1 点赞 0 评论 469 浏览 评分:0.0
自定义函数处理素数 摘要:#include<stdio.h> int judge(int n); int main(void) { int n; while(scanf("%d", &n)) …… 题解列表 2024年12月28日 2 点赞 0 评论 897 浏览 评分:0.0