会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wangys
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
16
下一页
2024年9月14日
原码 补码 反码-简图
摘要:
阅读全文
posted @ 2024-09-14 18:48 王ys
阅读(8)
评论(0)
推荐(0)
2024年9月7日
服务端,客户端
摘要: //服务端(以C++作范例) #include"mysocket.h" //导入头文件:由于mysock头文件本身就有其它文件,这里无需导入 using namespace std; SOCKET s_accept; int main() { cout << " 服务端 \n"; cout << "
阅读全文
posted @ 2024-09-07 09:14 王ys
阅读(11)
评论(0)
推荐(0)
2024年8月24日
cout 保留小数
摘要: cout<<fixed<<setprecision(2);
阅读全文
posted @ 2024-08-24 15:19 王ys
阅读(10)
评论(0)
推荐(0)
2024年8月14日
棋子移动
摘要: #include<iostream> using namespace std; int f(int n){ if(n==4){ cout<<"4,5-->9,10\n"<<"8,9-->4,5\n"<<"2,3-->8,9\n"<<"7,8-->2,3\n" <<"1,2-->7,8\n"; }el
阅读全文
posted @ 2024-08-14 09:59 王ys
阅读(17)
评论(0)
推荐(0)
2024年8月9日
进制转换图解
摘要:
阅读全文
posted @ 2024-08-09 15:37 王ys
阅读(43)
评论(0)
推荐(0)
二叉树
摘要:
阅读全文
posted @ 2024-08-09 14:57 王ys
阅读(12)
评论(0)
推荐(0)
2024年8月2日
中缀 前缀 后缀表达式
摘要: 中缀表达式一、基本概念1、中缀表达式:操作符以中缀形式位于运算数中间(如:3+2),是我们日常通用的算术和逻辑公式表示方法。2、后缀表达式:又称逆波兰式,操作符以后缀形式位于两个运算数后(如:3+2的后缀表达形式就是3 2 +)。3、前缀表达式:又称波兰式,操作符以前缀形式位于两个运算数前(如:3+
阅读全文
posted @ 2024-08-02 14:14 王ys
阅读(158)
评论(0)
推荐(0)
2024年7月29日
文件输入输出
摘要: #include<iostream> #include<fstream> using namespace std; int main(){ char a[10]; ifstream inf; inf.open("1.txt"); inf>>a; for(int i=0;i<3;i++){ cout<
阅读全文
posted @ 2024-07-29 14:53 王ys
阅读(9)
评论(0)
推荐(0)
2024年7月19日
C#.09 PictureBox图片控件 笔记
摘要:
阅读全文
posted @ 2024-07-19 16:00 王ys
阅读(8)
评论(0)
推荐(0)
C#.09 PictureBox图片控件
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.
阅读全文
posted @ 2024-07-19 15:59 王ys
阅读(21)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
16
下一页
公告