首页上一页 1 下一页尾页 4 条记录 1/1页
这段代码哪错了
发表在C语言视频课程答疑
2018-07-09
是否精华
是
否
版块置顶:
是
否
#include<stdio.h> #include<windows.h> int color(int c) { SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),c); return 0; } int main() { int i; for(i=0;i<16;i++) { color(i); printf("这是%d号色\n",i); } getch(); return 0; }