题解列表

筛选

标准的写法

摘要:#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct Node{ int x; int y; ……

利用Java实现利润计算程序

摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main { public static void main(String[] args) { Scan……

python-12-1三角形

摘要:解题思路:按照公式计算就可以了。注意事项:参考代码:from math import sqrt   def f(x1,y1,x2,y2,x3,y3):       a = sqrt((x1-x2)……