udp通信(一)
1、udp包的格式 public class UdpData{public byte[] SourcePort new byte[2];public byte[] DestinationPort new byte[2];public byte[] Length new byte[2];//Data.length8;public byte[] Checksum new byte[2];public byte[] Data …
一、sql-判断三角形
610. 判断三角形 - 力扣(LeetCode)
用一下if加上判断条件 select x,y,z,if(xy > z and xz > y and yz > x
and x-y < z and x-z < y and y-z < x,Yes,No) as triangle
from Triangle
二、按照分类统计薪水
190…