该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
用简单的printf 能编写出来,就是写的多了点.
#include
main()
{
int i,j,k,s;
printf("please enter year and week:");
scanf("%d",&i);
printf("\n");
scanf("%d",&j);
clrscr();
if((13%7+j-1)%7==5)
printf("%d January 13th is a black Friday!",i);
if(13%7+j-1+31==5)
printf("%d Febuary 13th is a black Friday!",i);
if(i%4==0)
{if((13%7+j-1+31+29)%7==5)
printf("%d March 13th is a black Friday!",i);
if((13%7+j-1+31+29+31)%7==5)
printf("%d Apirl 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30)%7==5)
printf("%d May 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31)%7==5)
printf("%d June 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31+30)%7==5)
printf("%d July 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31+30+31)%7==5)
printf("%d August 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31+30+31+31)%7==5)
printf("%d September 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31+30+31+31+30)%7==5)
printf("%d October 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31+30+31+31+30+31)%7==5)
printf("%d November 13th is a black Friday!",i);
if((13%7+j-1+31+29+31+30+31+30+31+31+30+31+30)%7==5)
printf("%d December 13th is a black Friday!",i);
}
if(i%4!=0)
{if((13%7+j-1+31+28)%7==5)
printf("%d March 13th is a black Friday!",i);
if((13%7+j-1+31+28+31)%7==5)
printf("%d Apirl 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30)%7==5)
printf("%d May 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31)%7==5)
printf("%d June 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31+30)%7==5)
printf("%d July 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31+30+31)%7==5)
printf("%d August 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31+30+31+31)%7==5)
printf("%d September 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31+30+31+31+30)%7==5)
printf("%d October 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31+30+31+31+30+31)%7==5)
printf("%d November 13th is a black Friday!",i);
if((13%7+j-1+31+28+31+30+31+30+31+31+30+31+30)%7==5)
printf("%d December 13th is a black Friday!",i);
}
}