2997: 梯形面积题解 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ double e; e=150*2/15*(15+25)/2; prin…… 题解列表 2024年11月24日 1 点赞 0 评论 160 浏览 评分:9.9
编写题解 1151: C语言训练-计算一个整数N的阶乘 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int i,N,s=1; cin>>N; for(…… 题解列表 2024年11月24日 2 点赞 0 评论 74 浏览 评分:9.9
2000: 偶数列举题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年11月24日 1 点赞 0 评论 78 浏览 评分:9.9
编写题解 2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年11月24日 2 点赞 0 评论 132 浏览 评分:9.9
1764: 循环入门练习1题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int s=0; for(int i=0;i<=1000;…… 题解列表 2024年11月24日 1 点赞 0 评论 109 浏览 评分:9.9
编写题解 1764: 循环入门练习1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int s=0; for(int i=0;i<=1000;…… 题解列表 2024年11月24日 2 点赞 0 评论 54 浏览 评分:9.9
聚焦核心:余钱和预算够不够?记得更新 摘要:解题思路:1.循环输入2.每个月增量 用+=3.聚焦核心对比 预算够不够 4.不够cout,够再存下一步5.记得更新金额,进入下一个循环注意事项:聚焦核心:余钱和预算够不够?只比较这一件事更新容易忘了…… 题解列表 2024年11月24日 0 点赞 0 评论 45 浏览 评分:0.0
编写题解 2772: 苹果和虫子 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y,n; cin>>n>>x>>y; if(y…… 题解列表 2024年11月24日 2 点赞 0 评论 64 浏览 评分:9.9
3008: 买笔题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; char c; int result; scanf("%d%d",&a…… 题解列表 2024年11月24日 2 点赞 1 评论 73 浏览 评分:8.7
期末来临了,班长小Q决定将剩余班费x元钱,用于购买若干支钢笔奖励给一些学习好、表现好的同学。已知商店里有三种钢笔,它们的单价为6元、5元和4元。小Q想买尽量多的笔(鼓励尽量多的同学),同时他又不想有剩 摘要:解题思路:优先买4元x/4=0 全买4元x/4=1 买1个5元x/4=2 买1个6元x/4=3 买1个5元 买1个6元注意事项:参考代码:#include <bits/stdc++.h>usi…… 题解列表 2024年11月24日 1 点赞 1 评论 145 浏览 评分:9.9