View Code of Problem 3697

#include<stdio.h>
#include<math.h>
#include<string.h>
#define inf 0x7fffffff
int main()
{
	int t;
	scanf("%d",&t);
	while(t--)
	{
		int a,b;
		scanf("%d %d",&a,&b);
		if(a>b)
		{
		}else{
			int c=a;
			a=b;
			b=c;
		}
		int i;
		for(i=a;i<=b;i++)
		{
			printf("%d frog has %d mouth, %d eyes and %d legs, jumps into the water with a splash.\n",i,i,2*i,4*i);
		}
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 3697