Guest User

Untitled

a guest
Dec 14th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include "math.h"
  3. #include "iostream"
  4. using namespace std;
  5.  
  6. int _tmain(int argc, _TCHAR* argv[])
  7. {
  8. float a, b, y;
  9. int massiv[100];
  10. setlocale(LC_ALL,"russian");
  11. cout<<"Введите элемент массива А"<<endl;
  12. cin>>a;
  13. cout<<"Введите элемент массива В"<<endl;
  14. cin>>b;
  15. cout<<"Элементы массива"<<endl;
  16. for (int i=a; i<b; i++)
  17. {
  18. massiv[i] = rand()%100;
  19. cout<<massiv[i]<<endl;
  20. }
  21. cout<<"Этап второй:"<<endl;
  22.  
  23. system("pause");
  24. return 0;
  25. }
Add Comment
Please, Sign In to add comment