View Code of Problem 78

#include <stdio.h>
#include <string.h>
int main(){
	char a[100],b[100],c[100],t[100];
	int i;
	gets(a);
    gets(b);
    gets(c);
	if(strcmp(a,b)>0)
	{
		strcpy(t,b);
		strcpy(b,a);
		strcpy(a,t);
	}
	if(strcmp(a,c)>0)
	{
		strcpy(t,a);
		strcpy(a,c);
		strcpy(c,t);
	}
	if(strcpy(b,c)>0)
	{
		strcpy(t,b);
		strcpy(b,c);
		strcpy(c,t);
	}
	puts(a);
	puts(b);
	puts(c);
	return 0;
}

Double click to view unformatted code.


Back to problem 78