摘要:
c语言实现,小伙伴们谁要有更好的实现方法,要告诉我呦 #include int main(void) { int f,i,f1=1,f2=2; printf("请输入楼梯数"); scanf("%d",&i); printf("\n"); if(i==1) {printf("有1种走法");} if 阅读全文
摘要:
type Exception report message java.lang.reflect.InvocationTargetException description The server encountered an internal error that prevented it from 阅读全文
摘要:
1.TCP和UDP 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SENT状态,等待服务器确认;SYN:同步序列编号(Synchronize Sequence Numbers)。 第二次 第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同时自 阅读全文
摘要:
public static void main(String[] args) { //创建四条线程 Thread t1 =new GivePrice(); t1.setName("匿名A"); t1.start(); Thread t2 =new GivePrice(); t2.setName("匿 阅读全文