// 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person { char name[10]; int ID; int cj_yw; int cj_sx; struct person* next; struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow)) { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0)) { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // // FUNCTION: MyRegisterClass() // // PURPOSE: Registers the window class. // // COMMENTS: // // This function and its usage is only necessary if you want this code // to be compatible with Win32 systems prior to the 'RegisterClassEx' // function that was added to Windows 95. It is important to call this function // so that the application will get 'well formed' small icons associated // with it. // ATOM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX); wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // // FUNCTION: InitInstance(HANDLE, int) // // PURPOSE: Saves instance handle and creates main window // // COMMENTS: // // In this function, we save the instance handle in a global variable and // create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) { HWND hWnd; hInst = hInstance; // Store instance handle in our global variable hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL); if (!hWnd) { return FALSE; } ShowWindow(hWnd, nCmdShow); UpdateWindow(hWnd); return TRUE; } // // FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // // PURPOSE: Processes messages for the main window. // // WM_COMMAND - process the application menu // WM_PAINT - Paint the main window // WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TCHAR szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message) { case WM_COMMAND: wmId = LOWORD(wParam); wmEvent = HIWORD(wParam); // Parse the menu selections: switch (wmId) { case IDM_ABOUT: DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About); break; case IDM_EXIT: DestroyWindow(hWnd); break; default: return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam); } return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; } return FALSE; }
标签: 学生 计算器
上传时间: 2016-12-29
上传用户:767483511
1.软件安装步骤 a)运行光盘中客户软件\CCS5000 CCS2.20\CCS2.2\SETUP.EXE,进入引导界面; b)选择Install下的Code Composer Studio进入安装界面; c)按照默认的方式安装,装在C:\ti下。 d)安装软件补丁:运行光盘客户软件\c5000ccs2.20\CCS FOR C5000-补丁\C5000-2.20.00-FULL-to-C5000-2.20.18-FULL.EXE,进入安装界面,然后按照默认的方式安装即可。 e)重新启动计算机,按DEL键进入CMOS的设置界面CMOS SETUP UTILITY,将Integrated Peripherals中的Onboard Paralell Port改为378/IRQ,Parrallel Port Mode改为EPP,保存退出。 f)进入windows后会出现“CCS 2(‘ C5000) ”、 “Setup CCS 2(‘ C5000) ”两个图标。
标签: 激活
上传时间: 2017-01-03
上传用户:jmw8637
第一章:眼动概述 第一章:眼动的神经基础 第三章:眼跳和注意 第四章:视觉加工和眼动 第五章:眼动病理学和发展 第六章:阅读中的眼动控制 第七章:语言加工和眼动 本书旨在眼动研究领域的不同方面进行概述,并对未来的研究放向进行展望,以促进人们对自身行为的了解。
上传时间: 2017-02-27
上传用户:1512394974
程序流程语句 1、 if 语句 2、 switch 语句 3、 while 语句 4、 for 语句 5、循环的嵌套 6、其他流程控制语句
上传时间: 2017-03-10
上传用户:qlxxx
ESP8266 WiFi模块用户手册V1.0 ESP8266是一款超低功耗的UART-WiFi 透传模块,拥有业内极富竞争力的封装尺寸和超低能耗技术,专为移动设备和物联网应用设计,可将用户的物理设备连接到Wi-Fi 无线网络上,进行互联网或局域网通信,实现联网功能。 ESP8266封装方式多样,天线可支持板载PCB天线,IPEX接口和邮票孔接口三种形式; ESP8266可广泛应用于智能电网、智能交通、智能家具、手持设备、工业控制等领域。 更多资料,请访问安信可开源社区 www.ai-thinker.com
上传时间: 2017-07-07
上传用户:砚子儿*
单片机 :AT89S52 或 STC89C52RC 典型传感器:AM2301 功能 :串口发送温湿度数据 波特率 9600 晶振 :12M (用户系统时钟如不是12M 请更改相关宏定义及注释的延时时间) 编译环境: Keil 4
上传时间: 2018-07-27
上传用户:gmc832002
彩色实验 文件:demo_color.m 1. 提取RGB图像的三个分量,并分别显示。 2. 合成伪彩色图像。 3. 将RGB图像转换到HSI空间,并显示三个分量。 4. 对原图像的RGB三个分量分别进行平滑操作,将原图像转换到HSI空间对亮度分量进行平滑操作,计算两种平滑操作方法的图像差值。 5. 在RGB和HSI空间中用ice函数进行色彩调节。 压缩实验 文件:demo_huff.m 1. 计算矩阵f=[119 123 168 119;107 119 168 168;119 119 107 119;168 107 119 119]一阶熵估计,并进行霍夫曼编码。 2. 对Lena图像进行霍夫曼编码,并对编码后图像解码。
上传时间: 2019-01-19
上传用户:Rouxuan
一个程序如果不好看,使用的人一定不爽,会有视觉疲劳。因此一个功能强大且界面漂亮、易于操作的软件才是人们真正需要的软件。 本书每一课以一个实际制作图形的任务完成教学工作,不仅提高了编程的辅助技术技能,学习Photoshop的使用方法,还可以进入图形设计的大门。 一般学习编程的书很少有对如何设计程序的图形界面进行专门介绍,因此学习后,很多用户对于程序界面设计还不能很好的掌握。而学习程序界面设计有的编程爱好者是通过学习图像制作软件而得来的,如Photoshop,但还不够具体进行程序界面设计。 一个有着漂亮界面的程序一定比界面普通的程序更会让人感觉上更专业一些,让人眼睛一亮。在当今竞争激烈的市场环境下,客户越来越挑剔,对创意有着较高的要求。现在的经济也有人称为吸引人眼球的经济,不得不承认有些程序在界面设计上所花的功夫并不比程序设计的少,有的设计精美的程序实在是让人难以忘怀的。 本书即是一种教大家如何学习设计漂亮的易语言应用程序界面的专业书籍。书中介绍了易语言界面设计方法,采用Photoshop7.0作为教学工具。有的读者会说是不是杀鸡用牛刀了,但你能用“画板”画出水晶按钮吗?由于程序界面设计涉及的内容非常多,如果用其他的软件进行教学也许会达不到预期的目标,因此使用Photoshop无疑是首选工具。再加上Photoshop的确是设计行业中的老大,不仅从它的易操作性方面来说,还是从它那强大的功能,以及众多的滤镜等,都一定不会让读者失望。 本书以Photoshop 7.0为讲解对象,同样也适合于Photoshop的其他所有的版本。 同时本书是一本速成的书,因此没有先去了解Photoshop的基本知识,而是直接进行操作,从操作中再去了解Photoshop,一共8课学会,效果更好。 本书适合中学课本中对图形图像的学习,可以安排16课时。 本书同时适合学习易语言编程的爱好者美化自己的程序。 为易语言资格认证考试易语言程序设计师指导用书。 本教材参加易语言在中小学试点项目的老师们可任意参考使用。
上传时间: 2019-01-29
上传用户:jizhi111
Reconstruction- and example-based super-resolution (SR) methods are promising for restoring a high-resolution (HR) image from low-resolution (LR) image(s). Under large magnification, reconstruction-based methods usually fail to hallucinate visual details while example-based methods sometimes introduce unexpected details. Given a generic LR image, to reconstruct a photo-realistic SR image and to suppress artifacts in the reconstructed SR image, we introduce a multi-scale dictionary to a novel SR method that simultaneously integrates local and non-local priors. The local prior suppresses artifacts by using steering kernel regression to predict the target pixel from a small local area. The non-local prior enriches visual details by taking a weighted average of a large neighborhood as an estimate of the target pixel. Essentially, these two priors are complementary to each other. Experimental results demonstrate that the proposed method can produce high quality SR recovery both quantitatively and perceptually.
标签: Super-resolution Multi-scale Dictionary Single Image for
上传时间: 2019-03-28
上传用户:fullout
This book provides an overview of recent innovations and achievements in the broad areas of cyber-physical systems (CPS), including architecture, networking, systems, applications, security, and privacy. The book discusses various new CPS technologies from diverse aspects to enable higher level of innovation towards intelligent life. The book provides insight to the future integration, coordination and interaction between the physical world, the information world, and human beings. The book features contributions from renowned researchers and engineers, who discuss key issues from various perspectives, presenting opinions and recent CPS-related achievements.Investigates how to advance the development of cyber-physical systems Provides a joint consideration of other newly emerged technologies and concepts in relation to CPS like cloud computing, big data, fog computing, and crowd sourcing Includes topics related to CPS such as architecture, system, networking, application, algorithm, security and privacy
上传时间: 2019-04-21
上传用户:danyun