[编程入门]求和训练-题解 摘要:解题思路:利用三次循环进行求解,将a,b,c中的值依次加到Sn上注意事项:int类型可以赋值给float类型,不会损失精度c部分的除法,分子用1.0,可以将k转换为浮点数进行运算,得到的值记为浮点数编…… 题解列表 2023年03月08日 0 点赞 0 评论 339 浏览 评分:9.9
简单for循环 摘要:解题思路:1、根据对称性,只看前n/2行即可 2、发现奇数行和偶数行的规律 奇数行i/2个*-,结尾i/2个-* 中间全是 题解列表 2023年03月08日 0 点赞 0 评论 385 浏览 评分:0.0
================================================================ 摘要:参考代码:#include <stdio.h>#include <string.h>int function(char str[]){ int h1,m1,s1,h2,m2,s2,t=0; …… 题解列表 2023年03月08日 0 点赞 0 评论 422 浏览 评分:0.0
优质题解 最长上升子序列(贪心+二分) 摘要:线性DP(O(n^2)):[传送门](https://blog.dotcpp.com/a/91960 "动态规划") ------------ ## 贪心+二分(nlogn) ##### *…… 题解列表 2023年03月08日 0 点赞 0 评论 769 浏览 评分:7.3
c++解题思路 摘要:```cpp #include using namespace std; struct time { int year; int month; int day; };…… 题解列表 2023年03月07日 0 点赞 0 评论 380 浏览 评分:9.9
charAt之字符串反转 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年03月07日 0 点赞 0 评论 289 浏览 评分:0.0
1058: 二级C语言-求偶数和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,s=0; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++…… 题解列表 2023年03月07日 0 点赞 0 评论 241 浏览 评分:0.0
15行代码写完 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>…… 题解列表 2023年03月07日 1 点赞 0 评论 407 浏览 评分:9.9
三个数找最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max; scanf("%d%d%d",&a,&b,&c); max=a; if(…… 题解列表 2023年03月07日 0 点赞 0 评论 557 浏览 评分:0.0