题解列表

筛选

边长判断-题解(C语言代码)

摘要:解题思路:思路比较简单   两边的平方和等于第三边的平方。注意事项:输出YES 和NO 。参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d……