View Code of Problem 78

#include<bits/stdc++.h>
using namespace std;
int main(){
	string s[3];
	for(int i=0;i<3;i++){
		cin>>s[i];
	}
	sort(s,s+3);
	for(int i=0;i<3;i++){
		if(i!=2){
			cout<<s[i]<<endl;
		}
		else{
			cout<<s[i];
		}
	
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 78