程序设计语言 第3页
程序设计相关语言,如:C语言
程序设计天梯赛题解-20分题 (C/C++)-津桥芝士站

程序设计天梯赛题解-20分题 (C/C++)

L1-002 打印沙漏L1-006 连续因子L1-009 N个数求和L1-011 A-BL1-015 跟奥巴马一起画方块L1-016 查验身份证L1-020 帅到没朋友L1-023 输出GPLTL1-027 出租L1-032 Left-padL1-034 点赞L1-039 古风排...
Ciallo~的头像-津桥芝士站高级会员Ciallo~13天前
05211
Ubuntu Linux下配置C/C++环境-津桥芝士站

Ubuntu Linux下配置C/C++环境

环境操作系统:ubuntu-22.04.4安装1. 更新软件包列表,检查可用的软件包更新 sudo apt update2.  安装编译软件所必需的元包 build-essential。sudo apt install build-essential它们包括 GNU...
Ciallo~的头像-津桥芝士站高级会员Ciallo~32天前
0368
C++实现socket编程(Windows、Linux)-津桥芝士站

C++实现socket编程(Windows、Linux)

基本概念C++ Socket 编程是实现网络通信的一种方式,利用 Socket 接口,程序可以通过计算机网络进行数据的传输与接收。Socket 是一种用于实现通信的抽象概念,它可看作是连接网络中两个通信端点...
Ciallo~的头像-津桥芝士站高级会员Ciallo~32天前
04114
Windows: 使用vcpkg安装CURL库,并集成至VS-津桥芝士站

Windows: 使用vcpkg安装CURL库,并集成至VS

安装教程:首先确保已经安装了git(命令行窗口输入git -v 不会提示出错,不会安装Git请参阅:Git安装教程):创建一个新项目,在VS2022中,并在Cpp文件中添加以下测试代码:可以看到有很多报错,...
程序设计天梯赛题解-25分题 (C/C++)-津桥芝士站

程序设计天梯赛题解-25分题 (C/C++)

L2-002 链表去重L2-003 月饼L2-004 这是二叉搜索树吗?L2-005 集合相似度L2-006 树的遍历L2-007 家庭房产L2-008 最长对称子串L2-009 抢红包L2-010 排座位L2-011 玩转二叉树L2-012 关于堆的判断...
LICDAK的头像-津桥芝士站高级会员LICDAK13天前
07511
WindowsAPI-控件:RichEdit-津桥芝士站

WindowsAPI-控件:RichEdit

使用WindowsAPI,创建RichEdit:#include <windows.h> #include <commctrl.h> #include <richedit.h> #pragma comment(lib, 'comctl32.lib') //#pragma comment(lib, 'Msftedi...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
05115
WindowsAPI-控件:MonthCalendar-津桥芝士站

WindowsAPI-控件:MonthCalendar

使用WindowsAPI,创建MonthCalendar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_CALENDAR 101 LRESULT CALLBACK WindowPr...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
05312
WindowsAPI-控件:GroupBox-津桥芝士站

WindowsAPI-控件:GroupBox

使用WindowsAPI,创建GroupBox:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_GROUPBOX 101 #define ID_BUTTON 102 LRESULT CALL...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0315
WindowsAPI-控件:ToolBar-津桥芝士站

WindowsAPI-控件:ToolBar

使用WindowsAPI,创建ToolBar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_TOOLBAR 201 LRESULT CALLBACK WindowProc(HWND...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
03314
WindowsAPI-控件:TrackBar-津桥芝士站

WindowsAPI-控件:TrackBar

使用WindowsAPI,创建TrackBar控件:#include <windows.h> #include <commctrl.h> #include <stdio.h> #pragma comment(lib, 'comctl32.lib') #define ID_TRACKBAR 101 #defi...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
03015
WindowsAPI-控件:Edit-津桥芝士站

WindowsAPI-控件:Edit

使用WindowsAPI,创建Edit控件:#include <windows.h> // 全局声明 HINSTANCE hInst; LPCWSTR szWindowClass = L'win32app'; LPCWSTR szTitle = L'Win32 编辑控件示例'; // 此代码模块中...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
03111
WindowsAPI-控件:ListView(SysListView32)-津桥芝士站

WindowsAPI-控件:ListView(SysListView32)

使用WindowsAPI,创建一个ListView控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_LISTVIEW 101 LRESULT CALLBACK WindowPro...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
02612