[编程入门]结构体之时间设计 极简利用函数 摘要:解题思路:注意事项:参考代码:#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 评论 599 浏览 评分:0.0
火焰 烧尽 摘要:解题思路: 完全背包问题注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int n; in…… 题解列表 2024年12月26日 0 点赞 0 评论 174 浏览 评分:0.0
2877:我这个方法更简单 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,x,y; scanf("%d%d%d",&n,&x,&y); int i,j;…… 题解列表 2024年12月26日 7 点赞 0 评论 398 浏览 评分:10.0
简单易于理解的素数问题——Python 摘要:参考代码:a=int(input()) s=0 for i in range(1,a): if a%i==0: s=s+1 if s>=2: print(&…… 题解列表 2024年12月26日 4 点赞 0 评论 527 浏览 评分:10.0
最普通的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int strcmp_(char a[],char b[]){ int len1,len2; …… 题解列表 2024年12月27日 0 点赞 0 评论 197 浏览 评分:0.0
基因相关性 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String []args)…… 题解列表 2024年12月27日 1 点赞 0 评论 535 浏览 评分:10.0
最好理解的矩阵转化问题——Python 摘要:参考代码:a,b,c=map(int,input().split()) d,e,f=map(int,input().split()) g,h,i=map(int,input().split())…… 题解列表 2024年12月27日 1 点赞 0 评论 490 浏览 评分:10.0
无聊的星期五 摘要:解题思路:注意事项:#include <stdio.h> #include<stdlib.h> int main() { for (int i = 1000; i < 9999;i++) {…… 题解列表 2024年12月27日 0 点赞 0 评论 521 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student{ …… 题解列表 2024年12月27日 5 点赞 0 评论 802 浏览 评分:10.0
无聊的星期五 摘要:解题思路:注意事项:#include <stdio.h> #include<stdlib.h> int main() { int x, y; scanf_s("%d %d", &x, &…… 题解列表 2024年12月27日 0 点赞 0 评论 540 浏览 评分:0.0