(a+b)*c JAVA 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年10月27日 0 点赞 0 评论 774 浏览 评分:9.9
编写题解 3007: 收费 摘要:**code:** ```C++ #include using namespace std; int main() { double n; cin>>n; co…… 题解列表 2023年10月27日 0 点赞 0 评论 308 浏览 评分:9.9
蛇形填数java思路易懂 摘要:解题思路:小白都能看懂注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] ar…… 题解列表 2023年10月27日 0 点赞 0 评论 563 浏览 评分:9.9
1259:送分题素数(C语言)(略微繁琐,但便于理解) 摘要:解题思路:对于素数的输出,我们可以简单地总他的定义入手,先回顾一遍素数(质数)的定义:对于一个不为1的正整数,如果他的因数只有1与这个书本身,那么我们称这个书为素数。通过定义我们可以很清晰地得出我们的…… 题解列表 2023年10月27日 0 点赞 0 评论 567 浏览 评分:9.9
相对简单一点 摘要:```cpp #include using namespace std; int a[10][10]; int main() { int n; while (cin >> n){ …… 题解列表 2023年10月27日 0 点赞 1 评论 291 浏览 评分:9.9
C语言思路简单,易懂!!! 理解万岁 (代码易理解)0_0!!!!! 摘要:解题思路: 用数组来计算加法,并进位注意事项:参考代码:#include<stdio.h>#include <string.h>int main(){ char p1[1000],p2[100…… 题解列表 2023年10月27日 0 点赞 0 评论 451 浏览 评分:9.9
字符串比较! 摘要:#include<stdio.h>#include <string.h>int main(){ char c[100],q[100]; scanf("%s",c); scanf("%s",…… 题解列表 2023年10月28日 0 点赞 0 评论 536 浏览 评分:9.9
题解 1808: [编程基础]输入输出练习之精度控制1 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; pr…… 题解列表 2023年10月28日 0 点赞 0 评论 768 浏览 评分:9.9
题解 2765: 计算分数的浮点数值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b; cin>>a>>b; …… 题解列表 2023年10月28日 0 点赞 0 评论 605 浏览 评分:9.9
数组求解与指定数字相同的数的个数 摘要:解题思路:首先数组a存储数字,100就代表整数序列最大为100,两个变量n,m表示整数序列的长度(N <= 100)和指定的数字, 其次一个for循环读取数字,并存到数组a…… 题解列表 2023年10月28日 0 点赞 0 评论 519 浏览 评分:9.9