View Code of Problem 78

#include <stdio.h>
#include <string.h>
#include <math.h>
#define N 10000
int main()
{
	char a[N], b[N], c[N], t[N];
	gets(a);
	gets(b);
	gets(c);
	if (strcmp(a, b) > 0)
	{
		strcpy(t, a);
		strcpy(a, b);
		strcpy(b, t);
	}
	if (strcmp(a, c) > 0)
	{
		strcpy(t, a);
		strcpy(a, c);
		strcpy(c, t);
	}
	if (strcmp(b, c) > 0)
	{
		strcpy(t, b);
		strcpy(b, c);
		strcpy(c, t);
	}

	puts(a);
	puts(b);
	puts(c);
}

Double click to view unformatted code.


Back to problem 78