fork(1) download
  1. //JUST PRACTISING
  2.  
  3. #include<cstdio>
  4. #include<iostream>
  5. #include<list>
  6. #include<algorithm>
  7. #include<vector>
  8. #include<utility>
  9. using namespace std;
  10. struct node
  11. {
  12. int u;
  13. int w;
  14. }road[10];
  15.  
  16. bool comp(node a,node b)
  17. {
  18. if(a.u<b.u)
  19. return 1;
  20. return 0;
  21.  
  22. }
  23.  
  24. int main()
  25. {
  26. for(int i=0;i<4;i++)
  27. { int a,b;
  28. scanf("%d%d",&road[i].u,&road[i].w);
  29. }
  30.  
  31. sort(road,road+4,comp);
  32. printf("\n\n\n\n");
  33. for(int i=0;i<4;i++)
  34. {
  35. printf("%d %d\n",road[i].u,road[i].w);
  36. }
  37.  
  38. //system("pause");
  39. }
Success #stdin #stdout 0s 3348KB
stdin
100 4
4 5
200 6
2 5
stdout



2   5
4   5
100   4
200   6