没错,这个题我也写题解 摘要:多写两句话吧,不然内容太少不让提交 那么我们来分析一下此题的需求,需要输出 'Just do IT'这几个字符,看似很简单,你们只需要输出这几个字符,而我们写题解的就要考虑很多了,比如字数太少不让提…… 题解列表 2024年08月07日 1 点赞 0 评论 619 浏览 评分:9.9
数据范围太大,用Python解决,同样的思路c++两个点都过不了 摘要:能过的def solve(a, n): temp = a if a < 0: a = -a stack = [] 题解列表 2024年08月07日 0 点赞 0 评论 191 浏览 评分:0.0
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int min(int a,int b){ return a>b?b:a;}int ma…… 题解列表 2024年08月07日 0 点赞 0 评论 332 浏览 评分:0.0
字符串分类统计C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){char a[200];cin.get…… 题解列表 2024年08月07日 6 点赞 0 评论 1036 浏览 评分:0.0
包你看懂,不懂来找我(c语言代码) 摘要:正常解法,输入一行输出一行,这个一行是一整行包括了空格,我也不知道是不是符合题意,这个是我看到题目第一眼想到的解法 ```c #include #include #define MAX 1…… 题解列表 2024年08月07日 2 点赞 0 评论 724 浏览 评分:9.9
特殊解法,宏定义解法,你肯定没有见过(c语言代码) 摘要:```c #include #define fun(a,b,c) printf("%d",b) int main() { int n1, n2, n3; scanf("%d …… 题解列表 2024年08月07日 6 点赞 0 评论 1171 浏览 评分:8.0
1808: [编程基础]输入输出练习之精度控制1(c语言代码) 摘要:注意事项: 1.单精度是float 2.格式控制是%f 3.保留三位小数是%.3f ```c #include int main(){ float a; scanf("%f",&a…… 题解列表 2024年08月07日 7 点赞 1 评论 1229 浏览 评分:9.0
1809: [编程基础]输入输出练习之精度控制2(哎呦,我真的是饿了) 摘要:注意事项: 1)双精度为double 2)格式为%lf 3)保留12位%.12lf ```c #include int main() { double a; scan…… 题解列表 2024年08月07日 4 点赞 0 评论 1066 浏览 评分:9.9
1810: [编程基础]输入输出练习之精度控制3(c语言代码,包懂版) 摘要:题目说了只有数字是靠右对齐,字符不用 整型是靠右对齐4位**%4.d** 单精度是靠右对齐4位,保留4位小数**%4.2f** 双精度是靠右对齐4位,保留12位小数**%4.12lf** ``…… 题解列表 2024年08月07日 1 点赞 0 评论 551 浏览 评分:0.0
(c语言代码) 摘要:解释一下,%e是科学计数法的形式输出,%g用来输出浮点数,系统会自动选 f 格式或 e 格式输出,但选择其中长度较短的格式,不输出无意义的0 ```c #include int main() …… 题解列表 2024年08月07日 0 点赞 0 评论 621 浏览 评分:0.0