点击/回复 | 标题 | 最后回复 | 发表时间/侃吧 |
371/0 |
【试题】矩阵乘法
#include <stdio.h> #include <stdlib.h> int **create2d(int row, int col) {... |
4-16 | 4-16 |
515/0 |
其实,Win32的窗口类就是真正的C++类,因为WNDCLASSEX类可以继承
例如,下面的程序可以正常运行: #include <Windows.h> class MyClass : public WNDCLASSEX { protected... |
4-16 | 4-16 |
603/7 |
【原创程序】工资上缴
![]() |
4-16 | 4-16 |
846/4 |
这周好像是第八周了
时间好快啊 |
5-25 | 4-11 |
497/0 |
今天我游览了百花潭公园,文化公园和锦里
RT |
4-9 | 4-9 |
515/1 |
【理解】虚函数的理解
【不用虚函数的情况】 在下面的程序中,声明一个基类的指针变量,指向子类的实例,但是调用时却只能调用父类的Show函数: #include "stdafx.h" #include... |
4-8 | 4-8 |
743/3 |
侃吧App已经发布了一年了
RT |
4-6 | 4-6 |
506/5 |
同样的代码,昨天wifi能用,但是接收不了图像数据
今天能接收图像数据,但是wifi立即失效,无法发送 |
4-5 | 4-5 |
566/3 |
表示暂时解决了DCMI开启后WIFI立即失效的问题
![]() |
4-4 | 4-4 |
508/2 |
物联网初赛项目4月8号就要交了
今天争取把图像采集部分做好。时间没几天了 目前眼镜离屏幕的距离控制在70厘米左右,每隔一小时都要休息五分钟。 |
4-11 | 4-3 |
516/1 |
【水】刚才的验证码是MSND,差点就是MSDN了
![]() |
4-6 | 4-1 |
488/1 |
四月了
RT |
4-1 | 4-1 |
523/1 |
2016年又过去四分之一了。。。
rt |
3-30 | 3-30 |
528/1 |
物联网项目已经延期到了4月8号
RT |
3-30 | 3-30 |
701/6 |
物联网项目进度
调用puts函数成功: ![]() ![]() |
3-29 | 3-28 |
586/0 |
纪念:doyo8
别人都已经上船了,我TM还在房子里,然后船开走了我就只有死了。。。 |
3-28 | 3-28 |
451/0 |
原来桌面上无法关闭只能改变大小的框只是Telegram的残影!
RT |
3-28 | 3-28 |
2698/9 |
【程序】Win32窗口程序通过WiFi与STM32单片机通信
![]() |
11-21 | 3-27 |
663/7 |
【入门】STM32使用标准库初始化和操作IO口
【示例程序】 #include "stm32f4xx.h" // 初始化IO口 void port_init() { GPIO_In... |
3-26 | 3-26 |
482/0 |
STM32F4标准库下载地址
http://120.52.72.53/www.st.com/c3pr90ntcsf0/st-web-ui/static/active/en/st_prod_software_internet/res... |
3-26 | 3-26 |
447/1 |
【程序】两个进程通过文件映射共享一块内存
【程序1】 #include "stdafx.h" #include <Windows.h> #include <stdio.h> void wait(... |
3-26 | 3-26 |
401/0 |
【实例】将文件内容映射到内存中
#include "stdafx.h" #include <Windows.h> #include <stdio.h> int _tmain(int argc... |
3-26 | 3-26 |
638/2 |
【方法】遍历整个目录中的文件和文件夹
【程序】 // ExploreFolder.cpp : Defines the entry point for the console application. // #includ... |
3-26 | 3-25 |
406/0 |
【方法】在指定文件夹中搜索文件
【程序】 #include "stdafx.h" #include <Windows.h> #define echo(str) WriteConsole(hConsole... |
3-26 | 3-25 |
512/0 |
我决定停止使用联通的号码1858***7038
rt |
3-25 | 3-25 |
2213/15 |
第一次烧写STM32单片机
DTR电平置低(-3--12V),复位 RTS置高(+3-+12V),选择进入BootLoader ...延时100毫秒 DTR电平变高(+3-+12V)释放复位 RTS维持高... |
3-25 | 3-24 |
407/2 |
【草稿】API中数据结构的组织方式
【XML输出方式】 <data> <bar id="45"> <name short="ss"... |
3-23 | 3-23 |
534/0 | 这吧早在2010年底就创建了。。。 | 3-23 | 3-23 |
491/4 |
Dev-C++竟然能直接用变量定义数组的大小,无需malloc或new!
#include <iostream> using namespace std; int main(void) { int n... ![]() |
3-23 | 3-23 |
531/3 |
这周C语言课的作业
【第一题】 #include <stdio.h> void check_char(char ch); void main() {... |
4-6 | 3-23 |