View Code of Problem 89

#include <stdio.h>
#include <string.h>
int main(){
	char a[100];
	gets(a);
	int i;
	for(i=0;i<strlen(a);i++){
		if(a[i]=='M')
			printf("Monday\n");
		 else if(a[i]=='T'&&a[i+1]=='h'){
			printf("Thursday\n");
			i++;
		}
		else if(a[i]=='T'&&a[i+1]=='u'){
			printf("Tuesday\n");
			i++;
		}
		else if(a[i]=='W')
			printf("Wednesday\n");
		else if(a[i]=='F')
			printf("Friday\n");
		else if(a[i]=='S'&&a[i+1]=='u'){
			printf("Sunday\n");
			i++;
		}
		else if(a[i]=='S'&&a[i+1]=='a'){
			printf("Saturday\n");
			i++;
		}
		else if(a[i]=='Y')
			break;
		else
			printf("Wrong data\n");

	}
return 0;

}

Double click to view unformatted code.


Back to problem 89