递归解题编写题解 1004: [递归]母牛的故事 摘要:解题思路:可以通过对前面几个数据进行总结规律注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int f[1000]={0};int dfc(i…… 题解列表 2022年07月28日 0 点赞 0 评论 444 浏览 评分:6.0
C/C++别问为什么高精度,问就是上题改过来的 耗时1 摘要:代码解释都用注释写在旁边了解题思路:一步步来就没问题注意事项:上题过了这题就一遍过;可能要有的:①忽略前导0 如009+001-002这样的②直接回车也输出0参考代码:#include<stdio.h…… 题解列表 2022年07月28日 0 点赞 0 评论 582 浏览 评分:9.9
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 331 浏览 评分:0.0
编写题解 1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double r = 0; scanf("%lf", &r); printf("%…… 题解列表 2022年07月28日 0 点赞 0 评论 357 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 485 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double F = 0; scanf("%lf", &F); printf("c…… 题解列表 2022年07月28日 0 点赞 0 评论 417 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char c1 = 'C', c2 = 'h', c3 = &#…… 题解列表 2022年07月28日 0 点赞 0 评论 398 浏览 评分:0.0
编写题解 2182: [编程入门]打印图案 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf(" *\n"); printf(" * *\n"); printf("*…… 题解列表 2022年07月28日 0 点赞 0 评论 485 浏览 评分:0.0
编写题解 1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("**************************\n"); printf…… 题解列表 2022年07月28日 0 点赞 0 评论 513 浏览 评分:0.0
矩形面积交 (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanne…… 题解列表 2022年07月28日 0 点赞 0 评论 440 浏览 评分:0.0