陈教主的三角形-题解(C语言代码) 摘要:```c #include #include #include #include void main() { float a,b,c; while(~scanf("%f%f%f",…… 题解列表 2020年07月20日 0 点赞 3 评论 769 浏览 评分:8.0
陈教主的三角形 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a[100],b[100],c[100],i,j=0; while(~scanf("%d %…… 题解列表 2017年10月22日 1 点赞 0 评论 1344 浏览 评分:8.0
WU-陈教主的三角形 (C++代码) 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; while(cin>>a>>b>>c) { …… 题解列表 2017年12月20日 4 点赞 0 评论 1240 浏览 评分:9.0
java 陈教主的三角形 摘要:解题思路:注意事项:构成三角形的条件是:1,任意两边之和大于第三边 2,任意两边之差小于第三边。参考代码:…… 题解列表 2023年12月29日 0 点赞 0 评论 67 浏览 评分:9.9
编写题解 1387: 陈教主的三角形 摘要:解题思路:注意事项:参考代码://行测试数据,每行包含两个整数a和b(0<a,b<=100),表示长方形的长和宽。当a和b同时为0时,表示输入结束 #include<stdio.h> int ma…… 题解列表 2023年01月07日 0 点赞 0 评论 173 浏览 评分:9.9
C语言!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; while (~scanf("%d%d%d", &a, &b, &c)) { if …… 题解列表 2023年12月10日 0 点赞 0 评论 117 浏览 评分:9.9