⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ord_text.c

📁 C语言库函数的源代码,是C语言学习参考的好文档。
💻 C
字号:
/* +++Date last modified: 05-Jul-1997 */

/*
**  Originally published as part of the MicroFirm Function Library
**
**  Copyright 1991, Robert B.Stout
**
**  With modifications suggested by Maynard Hogg
**
**  The user is granted a free limited license to use this source file
**  to create royalty-free programs, subject to the terms of the
**  license restrictions specified in the LICENSE.MFL file.
**
**  Function to return ordinal text.
*/

#include "numcnvrt.h"

static char *text[] = {"th", "st", "nd", "rd"};

char *ordinal_text(int number)
{
      if (((number %= 100) > 9 && number < 20) || (number %= 10) > 3)
            number = 0;
      return text[number];
}

#ifdef TEST

#include <stdio.h>

main()
{
      int i;

      for (i = 0; i < 26; ++i)
            printf("%d%s\n", i, ordinal_text(i));
      return 0;
}

#endif /* TEST */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -