C语言简单for循环求阶乘 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b=1,sum=0; int i; scanf("%lld",&a); f…… 题解列表 2023年12月09日 0 点赞 0 评论 119 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;struct date{ int n,y,r;};int m[13]= {0…… 题解列表 2023年12月09日 0 点赞 0 评论 253 浏览 评分:0.0
c语言利用数组 摘要:解题思路:#includeint main(){ int month_consume[12]; //每月的消费 int month_save=0; //单月的剩余 float a…… 题解列表 2023年12月09日 0 点赞 0 评论 820 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;struct student{ char xuehao[10000]; …… 题解列表 2023年12月09日 0 点赞 0 评论 773 浏览 评分:0.0
[编程入门]有规律的数列求和 摘要:解题思路:分子分母参考斐波那契数列规律注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include <stdio.h>float Fibonacci_1(fl…… 题解列表 2023年12月09日 0 点赞 0 评论 176 浏览 评分:0.0
1060:同因查找(python) 摘要:解题思路:注意事项:参考代码:for i in range(10,1001): if(i%2==0 and i%3==0 and i%7==0): print(i) …… 题解列表 2023年12月09日 0 点赞 0 评论 136 浏览 评分:0.0
点和正方形的关系--java语言 摘要:解题思路:①导入②判断关系③输入④输出注意事项:①导入②关系判断参考代码:import java.util.Scanner; public class Main { public stati…… 题解列表 2023年12月10日 0 点赞 0 评论 162 浏览 评分:0.0
周末舞会(python) 摘要:解题思路:注意事项:参考代码:def dance_partner(men_count, women_count, dance_count): men_queue = list(range(1, …… 题解列表 2023年12月10日 0 点赞 0 评论 195 浏览 评分:0.0
优优优质题解!!!!! 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { int zimu =0; int shuzi =0; int kong…… 题解列表 2023年12月10日 0 点赞 0 评论 186 浏览 评分:0.0
宏简单作法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define max a>b?(a>c?a:c):(b>c?b:c)int main(){int a,b,c;scanf("%d%d%…… 题解列表 2023年12月10日 0 点赞 0 评论 123 浏览 评分:0.0