首页 > 代码库 > C语言练习

C语言练习

练习1

用啊哈C软件编写出的代码显示颜色(紫底白字)。

#include <stdio.h>#include <stdlib.h>int main(){    system("color 5f");    printf("ni hao");    system("pause");    return 0;}

效果如下:

技术分享

 

C语言练习