主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年2月29日 16:41
三角形的边 题解:C
P1365
回复 0
|
赞 0
|
浏览 424
#include <stdio.h> void swap(int *p,int *q) { int t; t = *p; *p = *q; *q = t; } int main() { int a,b,c,t; while(scanf("%d %d %d",&a,&b,&c) != EOF) { if(a > b) swap(&a,&b); if(a > c) swap(&a,&c); if(b > c) swa...
快乐小土狗
2023年3月27日 16:25
三角形的边 排序
P1365
回复 0
|
赞 0
|
浏览 2.1k
排序之后按题意计算即可 #include<iostream> #include<algorithm> #include<vector> using namespace std; int main(){ vector<int>num(3); while(cin>>num[0]>>num[1]>>num[2]){ if(num[0]==0)break; sort(num.begin(),num.end()); ...
ymw1836828452
2020年4月22日 19:58
P1365题解
P1365
回复 0
|
赞 0
|
浏览 7.4k
#include <stdio.h> #include <stdlib.h> int main() {int a,b,c,max,middle,min,s; scanf("%d%d%d",&a,&b,&c); if(a>b){max=a;min=b;} else {max=b;min=a;} if(c<max){ if(max==a) {if(c>b){middle=c;min=b;} else {middle=b;min=c;} } if(max==b) {if(c>a){midd...
题目
三角形的边
题解数量
3
发布题解
热门题解
1
P1365题解
2
三角形的边 题解:C
3
三角形的边 排序