Guest User

Untitled

a guest
Jan 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. #include <string>
  2. using namespace std;
  3. string a() {
  4. return "PTSO";
  5. }
  6.  
  7. #include <string>
  8. #include "Header.h"
  9. using namespace std;
  10. int main() {
  11. return 0;
  12. }
  13.  
  14. /*
  15.  
  16. todo conteúdo enorme do arquivo string.h aqui
  17.  
  18. */
  19.  
  20. using namespace std;
  21. string a() {
  22. return "PTSO";
  23. }
  24.  
  25. /*
  26.  
  27. todo conteúdo enorme do arquivo string.h aqui repetido já que ele já está lá em cima
  28.  
  29. */
  30.  
  31. using namespace std;
  32. int main() {
  33. return 0;
  34. }
  35.  
  36. #include <string>
  37.  
  38. std::string a() {
  39. return "PTSO";
  40. }
  41.  
  42. #include <string>
  43.  
  44. std::string a();
  45.  
  46. #include <iostream>
  47. #include "auxiliar.hpp"
  48.  
  49. int main() {
  50. cout << a();
  51. return 0;
  52. }
  53.  
  54. #define quad(n) ( (n)∗(n) )
  55. #define abs(n) ( (n)<0 ? −(n) : (n) )
  56. #define max(x,y) ( (x)>(y) ? (x) : (y) )
Add Comment
Please, Sign In to add comment