Advertisement
EmmettMilligan

Factually

Dec 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. // base code file
  2.  
  3. #include <iostream>
  4. #include <windows.h>
  5. #include <stdlib.h>
  6. #include <time.h>
  7. #include <conio.h>
  8. #include <sstream>
  9. #include <fstream>
  10. using namespace std;
  11. void gotoxy(short x, short y) {
  12. COORD pos = {x, y};
  13. SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
  14. }
  15. // generates a random number between 0 and r inclusive
  16. int random(int r)
  17. {
  18. return rand()% r + 1;
  19. }
  20. ///////////////////////////////////////////////////////////////////////
  21. main()
  22. {
  23. srand(time(NULL));
  24. // write code here
  25. cout<<"In this one line, I am going to be speaking to you about factual statements.These statements are in fact,factual.Now what are these factual statements that are in fact factual? Well,this line is composed of such facts and statements to the point where every part of it is factual.Is there anything I can say to make these factual statements that are in fact factual incorrect that are not in fact factual? Well a statment like that would be something like 'These statements are not in fact factual.' But this C++ line of code only includes things that are in fact factual, so I cannot include that. Now, a line composed of facts that are in fact factual means that the line itself is fact. Therefore, this line is in fact factual as well.";
  26. // leave the following line in all programs
  27.  
  28. getch();
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement