摘要:
View Code #include <stdio.h>#include <string.h>int main(){ int m, n; int k = 0; int ticket[10001]; while (scanf("%d %d", &m, &n)) { int i = 1; if (!m && !n) { break; } memset(ticket, 0, sizeof(ticket)); int tmp; for (i = 1; i <= n; i++) { scanf("%d" 阅读全文
摘要:
int with= GetSystemMetrics(SM_CXFULLSCREEN); int heigh= GetSystemMetrics(SM_CYFULLSCREEN);通过上边两个函数获取的是显示屏幕的大小,及不包括任务栏等区域。 int cx = GetSystemMetrics( SM_CXSCREEN ); int cy = GetSystemMetrics( SM_CYSCREEN );这两个函数获取的是真正屏幕的大小。用前两个函数获取的大小可能是1024*687 而用下边两个获取的就是1024*768GetWindowRect用法:GetWindowRect(HWND,. 阅读全文