COUNTRY.C
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
- #include <stdio.h>
- #include <dos.h>
- void main(void)
- {
- struct COUNTRY info;
- country(0, &info);
- if (info.co_date == 0)
- printf("Date format: mm/dd/yyn");
- else if (info.co_date == 1)
- printf("Date format: dd/mm/yyn");
- else if (info.co_date == 2)
- printf("Date format: yy/mm/ddn");
- printf("Currency symbol %sn", info.co_curr);
- printf("Decimal separator %sn", info.co_thsep);
- printf("Date separator %s Time separator %sn",
- info.co_dtsep, info.co_tmsep);
-
- if (info.co_currstyle == 0)
- printf("Currency symbol precedes with no leading spacesn");
- else if (info.co_currstyle == 1)
- printf("Currency symbol follows with no spacesn");
- else if (info.co_currstyle == 2)
- printf("Currency symbol precedes with leading spacen");
- if (info.co_currstyle == 4)
- printf("Currency symbol follows with spacen");
- printf("Currency significant digits %dn", info.co_digits);
- if (info.co_time)
- printf("24 hour timen");
- else
- printf("12 hour timen");
- printf("Data separator %sn", info.co_dasep);
- }