c++//random//for Visual Studio 2012//shergin.yomu.ru//

Nov 30, 2012 14:31

// ConsoleApplication2.cpp: определяет точку входа для консольного приложения.
//
#include "stdafx.h"

#include
#include
#include
#include
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
SetConsoleCP(1251);
SetConsoleOutputCP(1251);

srand(time(0));
int rows = 20;
int *a = new int[rows];
for(int i=0;i

куртуазный полиморфизм

Previous post Next post
Up