View Code of Problem 119

#include<stdio.h>
#include<math.h>
bool isprime(int n)
{
	if(n<=1)
	return false;
	int sqr=(int)sqrt(n*1.0);
	for(int i=2;i<=sqr;i++)
	{
		if(n%i==0)
		return false;
	}
	return true;
}
int main()
{
	int k=1,n;
	while(scanf("%d",&n)!=EOF)
	{
		if(isprime(n)||n==1)
		printf("Case #%d: I'm richer than any one\n",k++);
		else
		printf("Case #%d: What a fxcking day\n",k++);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 119