Guest User

Untitled

a guest
Apr 17th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "stdafx.h"  
  2. #include <iostream>  
  3. using namespace std;    
  4.  
  5. double *p;
  6. double n;
  7. double pr = 1;
  8. int sum;
  9. int min = 1000000;
  10. int max = -1000000;
  11. int i_;
  12. int j_;
  13.  
  14. void getInput() {
  15.     // ...
  16. }
  17.  
  18. void process() {
  19.     // ...
  20. }
  21.  
  22. void printOutput() {
  23.     // ...
  24. }
  25.  
  26. int main()
  27. {
  28.     setlocale(LC_ALL, "Russian");
  29.  
  30.     getInput();     // Ввод данных
  31.     process();      // Обработка
  32.     printOutput();  // Вывод на экран
  33.  
  34.     system("pause");
  35.     return 0;
  36. }
Add Comment
Please, Sign In to add comment