题解 1387: 陈教主的三角形

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

我美吗!

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {  int a,b,c;  while(scanf("%d%d%d",&a,&b,&c)!=EOF)……

陈教主的三角形

摘要:解题思路:任意两边之和大于第三边即可注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; while( ~(scanf("%d %d %d",&a,&b……

陈教主的三角形 (C++代码)

摘要:解题思路:很简单的一道题,不知道为什么通过率这么低注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <……

陈教主的三角形

摘要:while True:     try:         ls = list(map(int,input().split()))         ls.sort()         a,