摘要:
1.金地酒店由北向南,右转进入阳光大街 2.康平街由西向东,右转进入西环一路 3,振华大街由东向西,右转进入西环一路 4.宁乐大街由西向东,右转进入津泉路 阅读全文
摘要:
int ab(int a,int b) { int c,d; for(c=1;c<=b;c++) if(a%c==0&&b%c==0) d=c; return d; } int gygb(int a,int b,int m) { int t,c,gy,gb; if(a>b) t=a,a=b,b=t; 阅读全文
摘要:
#思路:先求最大公约数,再用两个数的积除以最大公约数,即为最小公倍数 #include <stdio.h> int main() { int a,b,c,d; scanf("%d %d",&a,&b); if(a>b) c=a,a=b,b=c; for(c=a;c>=1;c--) { if(b%c= 阅读全文
摘要:
1.以管理员身份运行cmd 2.net user admin 123456 #将用户admin密码改为123456 补充: 在windows7中新增一个用户admin365,密码为password。在单击“开始”-“运行”中输入“cmd”并按“Shift+Ctrl+Enter”组合键,输入命令“ n 阅读全文
摘要:
import requests,sys,time,re head1={'Host':'2865.litevote.com', 'Content-Length':'60', 'Accept':"application/json, text/plain, */*",'jwt':'', 'User-Age 阅读全文