科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件C语言程序开发经典实例之四

C语言程序开发经典实例之四

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。

作者:佚名 来源:唯c世界 2007年10月28日

关键字: Linux

  • 评论
  • 分享微博
  • 分享邮件
【程序33】

  题目:学习gotoxy()与clrscr()函数   

  1.程序分析:
 
  2.程序源代码:

#include <conio.h>
void main(void)
{
 clrscr();/*清屏函数*/
 textbackground(2);
 gotoxy(1, 5);/*定位函数*/
 cprintf("Output at row 5 column 1\n");
 textbackground(3);
 gotoxy(20, 10);
 cprintf("Output at row 10 column 20\n");
}

  【程序34】

  题目:练习函数调用

  1. 程序分析:

  2.程序源代码:

#include <stdio.h>
void hello_world(void)
{
 printf("Hello, world!\n");
}
void three_hellos(void)
{
 int counter;
 for (counter = 1; counter <= 3; counter++)
  hello_world();/*调用此函数*/
}
void main(void)
{
 three_hellos();/*调用此函数*/
}

  【程序35】

  题目:文本颜色设置

  1.程序分析:

  2.程序源代码:

#include <conio.h>
void main(void)
{
 int color;
 for (color = 1; color < 16; color++)
 {
  textcolor(color);/*设置文本颜色*/
  cprintf("This is color %d\r\n", color);
 }
 textcolor(128 + 15);
 cprintf("This is blinking\r\n");
}
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章