普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;scanf("%d%d%d",&a,&b,&c);if(a*a+b*b==c*c||b*b+c…… 题解列表 2024年11月21日 0 点赞 0 评论 449 浏览 评分:0.0
坤坤也能看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a*a+b*b==c*c||b*…… 题解列表 2023年11月19日 0 点赞 0 评论 604 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); if …… 题解列表 2023年06月15日 0 点赞 0 评论 487 浏览 评分:0.0
2001: 边长判断 摘要:## if判断 ```c++ #include using namespace std; int main() { int a,b,c; cin>>a>>b>>c; …… 题解列表 2023年05月26日 0 点赞 0 评论 545 浏览 评分:0.0
勾股定理的傻子应用 摘要:解题思路:傻子算法用if else有手就行的注意事项:慢慢来参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c);…… 题解列表 2022年10月31日 0 点赞 0 评论 580 浏览 评分:0.0
边长判断有手就行 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max,min,m; scanf("%d%d%d",&a,&b,&c); max=a>b?a…… 题解列表 2021年11月07日 0 点赞 0 评论 537 浏览 评分:2.0
2001,好懂的方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&…… 题解列表 2021年11月06日 0 点赞 0 评论 530 浏览 评分:0.0
2001简介有高神的C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c;scanf ("%d %d %d",&a,&b,&c); if (a*a+b*b==…… 题解列表 2021年11月04日 0 点赞 0 评论 650 浏览 评分:0.0
2001 keyide C语言加油 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c;scanf ("%d %d %d",&a,&b,&c); if (a+b>c&&a-c<…… 题解列表 2021年11月04日 0 点赞 0 评论 868 浏览 评分:0.0
2001,好懂的方法 摘要:解题思路:勾股定理注意事项:或字符参考代码:#include <stdio.h>#include <math.h>int main(){ int a,b,c; scanf("%d%d%…… 题解列表 2021年11月02日 0 点赞 0 评论 936 浏览 评分:0.0