大约有 9,000 项符合查询结果(耗时:0.0205秒) [XML]

https://www.fun123.cn/aia-store/240220092746102 

二分查找(BinarySearch)算法AI2实现 · App Inventor 2 源码商店

... 手机号码输入有误,请检查! 非会员购买   非会员已购买点此验证 ...
https://www.tsingfun.com/it/cpp/614.html 

浅析为什么char类型范围是 -128~+127 - C/C++ - 清泛网 - 专注C/C++及内核技术

... 再看一个例子: char a=-129; printf("%d",a) ; 会输入多少?? 结果为127 ,为什么呢? -129在补码为10 0111 1111 只取后八位存储,即 0111 111 这个值刚好是127了,同理-130 截断后为126..... 如此按模轮回,关于模就先...
https://bbs.tsingfun.com/thread-343-1-1.html 

Windows下通过端口号查找出对应进程名称 - 脚本技术 - 清泛IT社区,为创新赋能!

...端口号,这里为80端口,如下图: 继续使用CMD窗口,输入netstat -aon|findstr "80"命令查询端口被哪个进程所占用,如下图,可以看到被pid为6844进程所占用 再使用tasklist|findstr "6844"命令,查找出哪个程序使用了该...
https://bbs.tsingfun.com/thread-947-1-1.html 

LINGO使用指南.doc - 脚本技术 - 清泛IT论坛,有思想、有深度

...子。例1.1 如何在LINGO中求解如下LP问题:在模型窗口中输入如下代码:min=2*x1+3*x2;x1+x2>=350;x1>=100;2*x1+x2<=600;然后点击工具条上按钮    即可。... 线上版本:http://www.tsingfun.com/html/2016/algo_0603/1472.html
https://www.tsingfun.com/it/cp... 

c++提取复数实部和虚部 - C/C++ - 清泛网 - 专注C/C++及内核技术

c++提取复数实部和虚部plural_real_part_imaginary_part输入一个复数,即可输出它实部和虚部。 #include<iostream> #include<string> using namespace std; typedef float REAL; #define MAX_BUF_LEN 256 typedef struct COMPLEX { REAL r; // 实部 REAL i...
https://www.tsingfun.com/it/te... 

onsubmit阻止表单提交 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...{ if (document.form1.myname.value=="") { alert("请输入开始数值!"); document.form1.myname.focus(); return false; } return true; } //---> </script> <form name="form1" method="post" action="#" onsubmit="return checksubm...
https://www.tsingfun.com/it/tech/1984.html 

linux下修改默认MYSQLroot管理密码 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...后密码登录 [root@test1 local]# mysql -u root -p Enter password: (输入修改后密码123456) Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 to server version:4.0.16-standard Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql>...
https://www.fun123.cn/aia-store/240126113453315 

个性化酷炫导航条 · App Inventor 2 源码商店

... 手机号码输入有误,请检查! 非会员购买   非会员已购买点此验证 ...
https://bbs.tsingfun.com/thread-1726-1-1.html 

App Inventor 2 复制屏幕功能,误删组件“后悔药”,界面设计更便捷 - Ap...

...一个SQLite拓展:2、点击工具栏上“复制屏幕”按钮,输入新屏幕名称:3、复制后Screen2:4、代码块也一并成功复制,且代码块中屏幕名自动更新为Screen2: 来源中文文档:https://www.fun123.cn/reference/creative/copy_screen.html
https://www.tsingfun.com/it/cpp/1343.html 

libevent+protobuf轻松搭建tcpserver - C/C++ - 清泛网 - 专注C/C++及内核技术

...ten_fd = setup_tcp_server(port); set_non_block(listen_fd); // 将输入参数params… 组织为一个结构,以指针方式存于accept_param struct event* ev_accept = (struct event*)malloc(sizeof(struct event)); event_set(ev_accept, listen_fd, EV_READ|EV_PERSIST, on_acc...