zhangchen 的文章
-
-
-
SAS与mysql数据库连接
01 配置ODBC 02-1 运行SAS代码 LIBNAME userdata odbc dsn='mysql' read_isolation_level = RU schema=dbo CONNECTION=shared DBMAX_TEXT=32767 /* prevent …… -
-
【无标题】
Python面向对象提升与收发邮件 1.多继承 打印123 class Person(object): def m(self): print(“123”) per = Person() per.m() 引入 from a import a 2.多态:…… -
Mount Azure Cloud VM File Share Folder With Tcp Port 445 Blocked By ISP
In this post, I am showing a way to mount Cloud VM’s File Share folder even in a situation which tcp port 445 has been blocked by your ISP. Ba…… -
2022年搬瓦工新年优惠码依然有效,全场优惠12.22%,美国CN2 GIA年付149.22美元起
今年元旦期间搬瓦工首次推出了一个新年优惠码,全场12.22%优惠,循环折扣,续费不涨价。现在这个搬瓦工新年优惠码虽然已经从首页移除了,不过VPS GO刚才试了下…… -
-
-
最大公约数(暴力求法与递归求法)
暴力法: int main() { int a,b; cin>>a>>b; while (b!= 0)//辗转相除 { int temp = a % b; a = b; b = temp; } int gcd=a;//gcd表示……
友情链接