C语言实现电子时钟程序

 更新时间:2022年03月31日 16:11:28   作者:Yan_Less  
这篇文章主要为大家详细介绍了C语言实现电子时钟程序,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了C语言实现电子时钟程序的具体代码,供大家参考,具体内容如下

Qt 里面运行

#include<windows.h> 
#include <stdio.h> 
#include <stdlib.h> 
#include <conio.h> 
#include <time.h> 
typedef struct
{
  int x;
  int y;
}Point;
time_t now;
struct tm *pt, t1, t2;
int printpoint(Point p)
{
  Point p1;
  p1.x = p.x + 2; p1.y = p.y + 4;
  gotoxy(p1.x, p1.y);   printf("%c%c", 2, 2);
  gotoxy(p1.x, p1.y + 1);  printf("%c%c", 2, 2);
  p1.y += 4;
  gotoxy(p1.x, p1.y);   printf("%c%c", 2, 2);
  gotoxy(p1.x, p1.y + 1);  printf("%c%c", 2, 2);
  return 0;
}
int print0(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else
      printf("%c%4s%c", 2, " ", 2);
  }
  return 0;
}
int print1(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    printf("%5s%c", " ", 2);
  }
  return 0;
}
int print2(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%5s%c", " ", 2);
    else
      printf("%c", 2);
  }
  return 0;
}
int print3(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else
      printf("%5s%c", " ", 2);
  }
  return 0;
}
int print4(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i<6) printf("%c%4s%c", 2, " ", 2);
    else if (i == 6)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else printf("%5s%c", " ", 2);
  }
  return 0;
}
int print5(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%c", 2);
    else
      printf("%5s%c", " ", 2);
  }
  return 0;
}
int print6(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%c", 2);
    else
      printf("%c%4s%c", 2, " ", 2);
  }
  return 0;
}
int print7(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0)  printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else    printf("%5s%c", " ", 2);
  }
  return 0;
}
int print8(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else printf("%c%4s%c", 2, " ", 2);
  }
  return 0;
}
int print9(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%c%4s%c", 2, " ", 2);
    else
      printf("%5s%c", " ", 2);
  }
  return 0;
}
int clear(Point p)
{
  int i = 0;
  for (; i<13; i++)
    gotoxy(p.x, p.y + i); printf("%16s", " ");
  return 0;
}
int printtime(Point p, int n)
{
  int a, b;
  Point pp;
  a = n / 10, b = n % 10;
  pp.x = p.x + 8, pp.y = p.y;
  switch (a)
  {
  case 0: print0(p); break;
  case 1: print1(p); break;
  case 2: print2(p); break;
  case 3: print3(p); break;
  case 4: print4(p); break;
  case 5: print5(p); break;
  }
  switch (b)
  {
  case 0: print0(pp); break;
  case 1: print1(pp); break;
  case 2: print2(pp); break;
  case 3: print3(pp); break;
  case 4: print4(pp); break;
  case 5: print5(pp); break;
  case 6: print6(pp); break;
  case 7: print7(pp); break;
  case 8: print8(pp); break;
  case 9: print9(pp); break;
  }
  return 0;
}
int main()
{
  Point phour, pmin, psec, point1, point2;
  phour.x = 9, pmin.x = 32, psec.x = 55;
  phour.y = pmin.y = psec.y = 7;
  point1.x = 25, point2.x = 49;
  point1.y = point2.y = 7;
  clrscr();
  textbackground(YELLOW);     /* 设置背景颜色*/
  textcolor(RED);   /* 设置数字显示颜色*/
  now = time(0);
  pt = localtime(&now);
  t1 = *pt;
  printtime(phour, t1.tm_hour);
  printpoint(point1);
  printtime(pmin, t1.tm_min);
  printpoint(point2);
  printtime(psec, t1.tm_sec);
  while (1)
  {
    now = time(0);
    pt = localtime(&now);
    t2 = *pt;
    if (t2.tm_sec != t1.tm_sec)
    {
      t1 = t2;
      clrscr();
      printtime(phour, t1.tm_hour);
      printpoint(point1);
      printtime(pmin, t1.tm_min);
      printpoint(point2);
      printtime(psec, t1.tm_sec);
    }
    if (bioskey(1) == 0) continue;
    else exit(0);
  }
  return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • C++ Boost CircularBuffer算法超详细精讲

    C++ Boost CircularBuffer算法超详细精讲

    Boost是为C++语言标准库提供扩展的一些C++程序库的总称。Boost库是一个可移植、提供源代码的C++库,作为标准库的后备,是C++标准化进程的开发引擎之一,是为C++语言标准库提供扩展的一些C++程序库的总称
    2022-11-11
  • C语言:代码宏详解

    C语言:代码宏详解

    这篇文章主要介绍了 C语言宏定义使用实例详解的相关资料,需要的朋友可以参考下,希望能够给你带来帮助
    2021-09-09
  • C语言实现推箱子游戏完整代码

    C语言实现推箱子游戏完整代码

    这篇文章主要为大家详细介绍了C语言实现推箱子游戏完整代码,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-12-12
  • C++检查某个文件或目录是否存在的函数

    C++检查某个文件或目录是否存在的函数

    这篇文章主要介绍了C++检查某个文件或目录是否存在的函数,是Windows应用程序设计中非常常见的实用技巧,需要的朋友可以参考下
    2014-10-10
  • C语言实现桌面贪吃蛇小游戏

    C语言实现桌面贪吃蛇小游戏

    这篇文章主要介绍了C语言实现桌面贪吃蛇小游戏,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-12-12
  • C++类的空指针调用成员函数的代码

    C++类的空指针调用成员函数的代码

    这篇文章主要介绍了C++类的空指针调用成员函数,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-07-07
  • C语言中的二叉树和堆详解

    C语言中的二叉树和堆详解

    这篇文章主要介绍了C语言中的二叉树和堆详解,树是一种非线性的数据结构,它是由n(n>=0)个有限结点组成一个具有层次关系的集合,把它叫做树是因为它看起来像一棵倒挂的树,也就是说它是根朝上,而叶朝下的,需要的朋友可以参考下
    2023-07-07
  • C++中Pimpl的惯用法详解

    C++中Pimpl的惯用法详解

    Pimpl(Pointer to Implementation)是一种常见的 C++ 设计模式,用于隐藏类的实现细节,本文将通过一个较为复杂的例子,展示如何使用智能指针来实现 Pimpl 惯用法,需要的可以参考下
    2023-09-09
  • C/C++预处理浅析使用形式

    C/C++预处理浅析使用形式

    预处理是指在进行编译的词法扫描和语法分析之前所作的工作。预处理指令指示在程序正式编译前就由编译器进行的操作,可放在程序中任何位置。处理完毕自动进入对源程序的编译。C/C++中的预处理主要包含三种:文件包含、宏定义、条件编译
    2022-09-09
  • C/C++实现MD5校验学习

    C/C++实现MD5校验学习

    MD5全程Message-Digest Algorithm 5,即消息摘要算法第五版,是属于hash算法的一种,本文主要介绍了如何在C++中实现MD5校验,需要的可以了解下
    2024-03-03

最新评论