1013: [编程入门]Sn的公式求和(最简单解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a=2,sum=0,i,n; scanf("%d",&n); for(i=0;i<n;…… 题解列表 2024年11月14日 2 点赞 0 评论 351 浏览 评分:0.0
一直83直到我把输出-1的语句放在外面 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,count=0; cin>>n; for(int i=1…… 题解列表 2024年11月14日 1 点赞 0 评论 80 浏览 评分:9.9
只用了for循环和冒泡排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define N 10int main(){ int a[N]; in…… 题解列表 2024年11月14日 0 点赞 0 评论 139 浏览 评分:9.9
火柴棒等式,暴力dfs 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 全局变量声明 int n, a[10005], b[10005] =…… 题解列表 2024年11月14日 0 点赞 0 评论 37 浏览 评分:0.0
题解 1052: [编程入门]链表合并 摘要:解题思路:注意事项:参考代码:import java.util.Comparator; import java.util.Scanner; import java.util.TreeSet; …… 题解列表 2024年11月14日 0 点赞 0 评论 195 浏览 评分:0.0
题解 1015: [编程入门]求和训练(最基础的方法) 摘要:解题思路:最简单的方法,简单易懂注意事项:平方和,倒数的表示参考代码:a,b,c = map(int,input().split()) suma = 0 sumb = 0 sumc = 0 f…… 题解列表 2024年11月14日 0 点赞 0 评论 209 浏览 评分:9.9
发工资咯 记way 摘要: #include using namespace std; int dir[] = { 100, 50, 10, 5, 2, 1 }; int main() {…… 题解列表 2024年11月14日 0 点赞 0 评论 61 浏览 评分:0.0
大一新生用C语言编写的 摘要:解题思路:不知道为啥用scanf,printf就不行注意事项:参考代码:#include<stdio.h>#include<string.h>void fanh(char a[]);//函数的声明in…… 题解列表 2024年11月14日 1 点赞 0 评论 192 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum=0; scanf("%d",&n); sum=n*2+n*(n-1)/2*…… 题解列表 2024年11月14日 0 点赞 0 评论 68 浏览 评分:0.0
简单算法,易理解 摘要:解题思路:a和b分别接收字符串,用加号拼接注意事项:参考代码:a=input()b=input()print(a+b)…… 题解列表 2024年11月14日 0 点赞 0 评论 93 浏览 评分:0.0