COUNTRY.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <dos.h>
  3. void main(void)
  4.  {
  5.    struct COUNTRY info;
  6.    country(0, &info);
  7.    if (info.co_date == 0)
  8.      printf("Date format: mm/dd/yyn");
  9.    else if (info.co_date == 1)
  10.      printf("Date format: dd/mm/yyn");
  11.    else if (info.co_date == 2)
  12.      printf("Date format: yy/mm/ddn");
  13.    printf("Currency symbol %sn", info.co_curr);
  14.    printf("Decimal separator %sn", info.co_thsep);
  15.    printf("Date separator %s Time separator %sn",
  16.      info.co_dtsep, info.co_tmsep);
  17.    
  18.    if (info.co_currstyle == 0)
  19.      printf("Currency symbol precedes with no leading spacesn");
  20.    else if (info.co_currstyle == 1)
  21.      printf("Currency symbol follows with no spacesn");
  22.    else if (info.co_currstyle == 2)
  23.      printf("Currency symbol precedes with leading spacen");
  24.    if (info.co_currstyle == 4)
  25.      printf("Currency symbol follows with spacen");
  26.    printf("Currency significant digits %dn", info.co_digits);
  27.    if (info.co_time)
  28.      printf("24 hour timen");
  29.    else
  30.      printf("12 hour timen");
  31.    printf("Data separator %sn", info.co_dasep);
  32.  }