• Windows,Clearing the Screen,cls


    #include <windows.h>
    
    void cls( HANDLE hConsole )
    {
       COORD coordScreen = { 0, 0 };    // home for the cursor 
       DWORD cCharsWritten;
       CONSOLE_SCREEN_BUFFER_INFO csbi; 
       DWORD dwConSize;
    
    // Get the number of character cells in the current buffer. 
    
       if( !GetConsoleScreenBufferInfo( hConsole, &csbi ))
       {
          return;
       }
    
       dwConSize = csbi.dwSize.X * csbi.dwSize.Y;
    
       // Fill the entire screen with blanks.
    
       if( !FillConsoleOutputCharacter( hConsole,        // Handle to console screen buffer 
                                        (TCHAR) ' ',     // Character to write to the buffer
                                        dwConSize,       // Number of cells to write 
                                        coordScreen,     // Coordinates of first cell 
                                        &cCharsWritten ))// Receive number of characters written
       {
          return;
       }
    
       // Get the current text attribute.
    
       if( !GetConsoleScreenBufferInfo( hConsole, &csbi ))
       {
          return;
       }
    
       // Set the buffer's attributes accordingly.
    
       if( !FillConsoleOutputAttribute( hConsole,         // Handle to console screen buffer 
                                        csbi.wAttributes, // Character attributes to use
                                        dwConSize,        // Number of cells to set attribute 
                                        coordScreen,      // Coordinates of first cell 
                                        &cCharsWritten )) // Receive number of characters written
       {
          return;
       }
    
       // Put the cursor at its home coordinates.
    
       SetConsoleCursorPosition( hConsole, coordScreen );
    }
    
    int main( void )
    {
        HANDLE hStdout;
    
        hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
    
        cls(hStdout);
        
        return 0;
    }
  • 相关阅读:
    用导数解决逗逼初三数学二次函数图像题
    NOIP 2014 pj & tg
    BZOJ 1004
    双参数Bellman-ford带队列优化类似于背包问题的递推
    emu1
    無題
    15 day 1代碼
    javascript quine
    线段树的总结
    Watering the Fields(irrigation)
  • 原文地址:https://www.cnblogs.com/threef/p/3201966.html
Copyright © 2020-2023  润新知