就阶乘和次幂之和 #MarkDown编辑器基本使用说明**如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。**##实时预览、全屏显示**编辑器左边是输入框, 题解列表 2023年04月30日 0 点赞 0 评论 556 浏览 评分:0.0
1739: 成绩排序 ```c未使用qsort排序``````c#include#include#includestructStu{charname[101];//注意不是100intage;intgrade;};structtmp{charname[101];intage;intgrade;};intmain(){int 题解列表 2023年04月30日 0 点赞 0 评论 715 浏览 评分:9.9
三个数最大值 摘要:一、解题思路:三目运算符C参考代码:#include <stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); a=…… 题解列表 2023年04月30日 0 点赞 0 评论 649 浏览 评分:9.9
字符串问题(c语言递归) ```c#include#includevoidswap(char*s1,char*s2);voidreverse(char*strs,intleft,intright);intmain(){charstrs[256]={0};gets(strs);reverse(strs, 题解列表 2023年04月29日 1 点赞 0 评论 894 浏览 评分:9.9
大小写转换(c语言代码) ```c#include#includevoidtoUp(char*strs);intmain(){charstrs[81]={0};while(gets(strs)){if(!strcmp(strs,"Endoffile")){break;}toUp(strs);//小写转大写puts(strs); 题解列表 2023年04月29日 0 点赞 1 评论 1109 浏览 评分:9.9
并查集 + 模拟 = 恶心 #并查集+模拟总结:真的很恶心##解题思路该有的注释都有了##代码实现```javaimportjava.util.*;publicclassMain{publicstaticvoidmain(String[]args){newMain().go();}staticclassUnionFind{int 题解列表 2023年04月29日 1 点赞 2 评论 1311 浏览 评分:9.9
1953: 三位数分解(制作不易,给个好评吧) 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d; cin>>a; b=a/100; …… 题解列表 2023年04月29日 0 点赞 2 评论 463 浏览 评分:8.7
计算三角形面积 摘要:解题思路:运用求两点间距离公式和海伦公式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,x…… 题解列表 2023年04月29日 0 点赞 0 评论 472 浏览 评分:2.0
感谢支持(谢谢) 摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb,xc,yc; cin>>xa…… 题解列表 2023年04月29日 0 点赞 0 评论 448 浏览 评分:4.0
2774: 计算三角形面积 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a; cin>>a>>b>>c>>d>>e>>f; …… 题解列表 2023年04月29日 0 点赞 0 评论 679 浏览 评分:9.9