摘要:
复制粘贴运行看看~~~#include<stdio.h>#include <windows.h>void SetColor(unsigned short ForeColor=5,unsigned short BackGroundColor=2) { HANDLE hCon = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hCon,ForeColor|BackGroundColor); } int main(){ int qq[50][50]={0}; int n;int key=1... 阅读全文