摘要:
#include <stdio.h> void swap(int *p1,int *p2) { int tmp=*p1; *p1=*p2; *p2=tmp; } void swap1(int *p1,int *p2){ *p1=*p1+*p2; *p2=*p1-*p2; *p1=*p1-*p2;} 阅读全文
摘要:
TF tfth tfthpc 阅读全文
摘要:
修改有线静态IP(固定IP) netsh interface ip set address name= "本地连接" source=static addr=192.168.200.52 mask=255.255.255.0 gateway=192.168.200.1 1 注:name:是有线连接的名 阅读全文