歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

C/C++計算屏幕尺寸

C/C++計算屏幕尺寸,只要寫成這樣就可以了,既簡單有實用。

代碼:

  1. #include <windows.h>   
  2. #include <stdio.h>   
  3. void main()  
  4. {  
  5. long x = GetSystemMetrics(SM_CXFULLSCREEN);  
  6. long y = GetSystemMetrics(SM_CYFULLSCREEN);  
  7. printf("X=%d, Y=%d", x, y);  
  8. system("Pause");  
  9. }  
Copyright © Linux教程網 All Rights Reserved