home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume7
/
yearlength
/
main.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-01-19
|
295 b
|
19 lines
#include <stdio.h>
main()
{
int days_in_year();
int year;
int country_code;
while (1)
{
printf("\nEnter year and country code: ");
if (scanf("%d %d", &year, &country_code) == EOF)
exit(0);
printf("it has %d days\n", days_in_year(year, country_code));
}
}