编写题解 1050: [编程入门]结构体之成绩记录(注释清晰 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct student{ …… 题解列表 2024年12月27日 5 点赞 0 评论 1022 浏览 评分:10.0
无聊的星期五 摘要:解题思路:注意事项:#include <stdio.h> #include<stdlib.h> int main() { for (int i = 1000; i < 9999;i++) {…… 题解列表 2024年12月27日 0 点赞 0 评论 631 浏览 评分:0.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日 2 点赞 0 评论 693 浏览 评分:7.3
基因相关性 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String []args)…… 题解列表 2024年12月27日 1 点赞 0 评论 702 浏览 评分:10.0
最普通的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int strcmp_(char a[],char b[]){ int len1,len2; …… 题解列表 2024年12月27日 0 点赞 0 评论 294 浏览 评分:0.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 评论 739 浏览 评分:10.0
2877:我这个方法更简单 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,x,y; scanf("%d%d%d",&n,&x,&y); int i,j;…… 题解列表 2024年12月26日 13 点赞 1 评论 610 浏览 评分:10.0
火焰 烧尽 摘要:解题思路: 完全背包问题注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int n; in…… 题解列表 2024年12月26日 1 点赞 0 评论 308 浏览 评分:0.0
[编程入门]结构体之时间设计 极简利用函数 摘要:解题思路:注意事项:参考代码:#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 评论 721 浏览 评分:0.0
1866: 三位数反转 摘要:解题思路:切片注意事项:参考代码:while True: try: a = input() print(a[::-1]) except: brea…… 题解列表 2024年12月26日 0 点赞 0 评论 731 浏览 评分:0.0