Advertisement
HarryDotcom

main.c

Dec 19th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. #include "akh.h"
  2.  
  3. int     main(void)
  4. {
  5.     t_probleme  *probleme;
  6.     t_solution  *solution;
  7.  
  8.     // 1.   Recuperer les données du problème
  9.     probleme = recuperer_pb();
  10.  
  11.     // 2.   Trouver une solution (ou pas)
  12.     solution = trouver_solution(probleme);
  13.  
  14.     // 3.   Afficher la solution
  15.     afficher_solution(solution);
  16.  
  17.     return (0);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement