Главная » Все файлы » Просмотр файлов из архивов » Текстовые файлы, страница 2

Текстовые файлы, страница 2

Текстовый формат файлов является одним из самых первых, ведь он очень простой - это просто текст. Однако стоит заметить, что текст это не так уж и просто, ведь в разных странах, на разных операционных системах и в разных программах используются различные кодировки этих файлов, что делает его не таким универсальным для передачи информации. Не смотря на трудности - этот формат максимально простой, что позволяет его использовать в совершенно различных целях.

lab6

program koshi_sist;

{$APPTYPE CONSOLE}

uses

SysUtils;

var t,h,yt,x0,y0,z0,x1,y1,z1:real;

i,n,ind:integer;

y:array[1..100] of real;

type Chisla=array[1..4] of real;

function p(xt:real):real; //Функция p(x)

begin

p:=0 //Ввести свое значение p(x)

end;

function q(xt:real):real; //Функция q(x)

begin

q:=4; //Ввести свое значение q(x)

end;

function f(xt:real):real; //Функция f(x)

begin

f:=sin(xt); //Ввести свое значение f(x)

end;

function f1(xt,yt,zt:real):real;

begin

f1:=zt; //первое ДУ из систему ОДУ 1ого порядка

end;

function f2(xt,yt,zt:real):real;

begin

f2:=f(xt)-q(xt)*yt-p(xt)*zt; //второе ДУ из систему ОДУ 1ого порядка

end;

procedure Koshi(a,b:integer; y0,z0,e:real; Rx:Chisla; var Ry,Rz:Chisla);

var Rxt,xi,yi,zi,k1,k2,l1,l2,yisled,zisled:r eal;

ind:integer;

begin

//Функция Trunc возвращает целочисленную часть числа с плавающей запятой.

n:=trunc((b-a)/sqrt(e)); //количество разбиений

h:=1/n; //шаг

xi:=a; //Начальное значение х равно a из условия

yi:=y0;

zi:=z0; //Начальные условия

ind:=1;//счетчик точек, значения в которых надо узнать

Rxt:=Rx[ind];//текущая точка, для которой считается значения

while xi<=b do begin

k1:=h*f1(xi,yi,zi);

l1:=h*f2(xi,yi,zi);

k2:=h*f1(xi+h,yi+k1,zi+l1);

l2:=h*f2(xi+h,yi+k1,zi+l1); //коэффициенты

yisled:=yi+(k1+k2)/2;

zisled:=zi+(l1+l2)/2; //следующее значение функций

if (xi+h)>=(Rxt-e) then begin // если дошли до Rxt

Ry[ind]:=yi+(Rxt-xi)/h*(yisled-yi);

// вычисляется значение функций в этой точке с помощью интерполяции

Rz[ind]:=zi+(Rxt-xi)/h*(zisled-zi);

if ind<4 then begin

ind:=ind+1;

Rxt:=Rx[ind]; // берется следующую точку

end;

end;

xi:=xi+h;

yi:=yisled;

zi:=zisled; // присваивается текущие значения.

end;

end;

function ZNACHENIE(xt:real):real;

begin

result:=(1/3)*sin(xt)+cos(2*xt)+(1/3)*si n(2*xt); //Ввести свое решшение

end;

var a,b:integer;

e:real;

Rx,Ry,Rz:Chisla;

begin

a:=0;

b:=1; //Начало и конец интервала

writeln('Vvedite yslovia dlia reshenia zadachi Koshi:');

write('x=');

readln(x0);

write('y(', x0:0:0, ') = ');

readln(y0);

write('y`(', x0:0:0, ') = ');

readln(z0);

write('Vvedite tochnost: e = ');

readln(e);

writeln;

Rx[1]:=0.25; //Точки, в которых требуется посчитать значение

Rx[2]:=0.5;

Rx[3]:=0.75;

Rx[4]:=1;

Koshi(a,b,y0,z0,e,Rx,Ry,Rz);

writeln('Metod Runge-Kutta');

for i:=1 to 4 do

writeln('y[', i, '] = ', Ry[i]:4:4);

{

writeln(' z[', i, '] = ', Rz[i]:4:4); - это если надо вывести значения z

}

writeln;

writeln('Tochnye resheniya DU:');

for i:=1 to 4 do

writeln('y[', i, '] = ', znachenie(Rx[i]):4:4);

writeln;

writeln('Pogreshnost vychisleniy:');

for i := 1 to 4 do

writeln('pogreshnost v toche ',i,' ', abs((Ry[i] - znachenie(Rx[i]))):4:4);

readln;

end.

Описание папок

a - решенная 5ая лабораторная (по методе 7ая) Решение краевой задачи для линейного дифференциального уравнения 2ого порядка методом прогонки 20 вариант

b - Решение 6ой лабы Численное решение задачи Коши для системы обыкновенных дифференциальных уравнений 23 вариант

c - 4 лаба 20 вариант Вычисление определенного интеграла методом срединных прямоугольников и методом Симпсона. Правило Рунге, уточнение по Ричардсону (сделана согласно учебнику Pascal Анатолия Адаменко "На примерах из математики") с рукописными объяснениями к лабе

d - 9 лаба МТ 20 вариант f(x)=0 методом деления отрезка пополам и методом касательных[/B] прокомменчена почти каждая строка! если глянуть еще на 2 формулы в методе, то вообще будете супер понимать прогу! язык Паскаль

e - 2ая лаба построение кубического сплайна надо в 4х местах ввести свою функцию и в самом начале интервалы твои. и все приложен какой-то отчет язык Паскаль

f - Первая лаба про трехдиагональную матрицу язык Паскаль

P. S. Baumanki.net

Текстовый документ

В начале до 13 фото страницы не по порядку (через 1)

Прочти меня!!!

Файл скачан с сайта StudIzba.com

При копировании или цитировании материалов на других сайтах обязательно используйте ссылку на источник

ReadMe

======================================== ================================

MICROSOFT FOUNDATION CLASS LIBRARY : Ex1

======================================== ================================

AppWizard has created this Ex1 application for you. This application

not only demonstrates the basics of using the Microsoft Foundation classes

but is also a starting point for writing your application.

This file contains a summary of what you will find in each of the files that

make up your Ex1 application.

Ex1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex1.h

This is the main header file for the application. It includes other

project specific headers (including Resource.h) and declares the

CEx1App application class.

Ex1.cpp

This is the main application source file that contains the application

class CEx1App.

Ex1.rc

This is a listing of all of the Microsoft Windows resources that the

program uses. It includes the icons, bitmaps, and cursors that are stored

in the RES subdirectory. This file can be directly edited in Microsoft

Visual C++.

Ex1.clw

This file contains information used by ClassWizard to edit existing

classes or add new classes. ClassWizard also uses this file to store

information needed to create and edit message maps and dialog data

maps and to create prototype member functions.

res\Ex1.ico

This is an icon file, which is used as the application's icon. This

icon is included by the main resource file Ex1.rc.

res\Ex1.rc2

This file contains resources that are not edited by Microsoft

Visual C++. You should place all resources not editable by

the resource editor in this file.

//////////////////////////////////////// /////////////////////////////////////

AppWizard creates one dialog class:

Ex1Dlg.h, Ex1Dlg.cpp - the dialog

These files contain your CEx1Dlg class. This class defines

the behavior of your application's main dialog. The dialog's

template is in Ex1.rc, which can be edited in Microsoft

Visual C++.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex1.pch and a precompiled types file named StdAfx.obj.

Resource.h

This is the standard header file, which defines new resource IDs.

Microsoft Visual C++ reads and updates this file.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

If your application uses MFC in a shared DLL, and your application is

in a language other than the operating system's current language, you

will need to copy the corresponding localized resources MFC42XXX.DLL

from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,

and rename it to be MFCLOC.DLL. ("XXX" stands for the language abbreviation.

For example, MFC42DEU.DLL contains resources translated to German.) If you

don't do this, some of the UI elements of your application will remain in the

language of the operating system.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Bul28

======================================== ================================

AppWizard has created this Bul28 application for you.

This file contains a summary of what you will find in each of the files that

make up your Bul28 application.

Bul28.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Bul28.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Bul28.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Bul29

======================================== ================================

AppWizard has created this Bul29 application for you.

This file contains a summary of what you will find in each of the files that

make up your Bul29 application.

Bul29.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Bul29.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Bul29.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Bul2_28

======================================== ================================

AppWizard has created this Bul2_28 application for you.

This file contains a summary of what you will find in each of the files that

make up your Bul2_28 application.

Bul2_28.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Bul2_28.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Bul2_28.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : CelOBj

======================================== ================================

AppWizard has created this CelOBj application for you.

This file contains a summary of what you will find in each of the files that

make up your CelOBj application.

CelOBj.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

CelOBj.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named CelOBj.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : CelObjH

======================================== ================================

AppWizard has created this CelObjH application for you.

This file contains a summary of what you will find in each of the files that

make up your CelObjH application.

CelObjH.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

CelObjH.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named CelObjH.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Dinam1

======================================== ================================

AppWizard has created this Dinam1 application for you.

This file contains a summary of what you will find in each of the files that

make up your Dinam1 application.

Dinam1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Dinam1.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Dinam1.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : EX_file

======================================== ================================

AppWizard has created this EX_file application for you.

This file contains a summary of what you will find in each of the files that

make up your EX_file application.

EX_file.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

EX_file.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named EX_file.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex10_1

======================================== ================================

AppWizard has created this Ex10_1 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex10_1 application.

Ex10_1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex10_1.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex10_1.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex10_2

======================================== ================================

AppWizard has created this Ex10_2 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex10_2 application.

Ex10_2.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex10_2.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex10_2.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex10_3

======================================== ================================

AppWizard has created this Ex10_3 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex10_3 application.

Ex10_3.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex10_3.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex10_3.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex12_gev

======================================== ================================

AppWizard has created this Ex12_gev application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex12_gev application.

Ex12_gev.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex12_gev.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex12_gev.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex1

======================================== ================================

AppWizard has created this Ex1 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex1 application.

Ex1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex1.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex1.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_1

======================================== ================================

AppWizard has created this Ex2_1 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_1 application.

Ex2_1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_1.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_1.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_2

======================================== ================================

AppWizard has created this Ex2_2 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_2 application.

Ex2_2.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_2.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_2.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_3

======================================== ================================

AppWizard has created this Ex2_3 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_3 application.

Ex2_3.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_3.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_3.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_4

======================================== ================================

AppWizard has created this Ex2_4 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_4 application.

Ex2_4.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_4.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_4.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_5

======================================== ================================

AppWizard has created this Ex2_5 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_5 application.

Ex2_5.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_5.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_5.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_6

======================================== ================================

AppWizard has created this Ex2_6 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_6 application.

Ex2_6.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_6.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_6.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex1_4

======================================== ================================

AppWizard has created this Ex1_4 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex1_4 application.

Ex1_4.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex1_4.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex1_4.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex1_5

======================================== ================================

AppWizard has created this Ex1_5 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex1_5 application.

Ex1_5.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex1_5.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex1_5.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4

======================================== ================================

AppWizard has created this Ex4 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4 application.

Ex4.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex2_for

======================================== ================================

AppWizard has created this Ex2_for application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex2_for application.

Ex2_for.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex2_for.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex2_for.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_1

======================================== ================================

AppWizard has created this Ex3_1 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_1 application.

Ex3_1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_1.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_1.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_10

======================================== ================================

AppWizard has created this Ex3_10 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_10 application.

Ex3_10.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_10.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_10.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_11

======================================== ================================

AppWizard has created this Ex3_11 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_11 application.

Ex3_11.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_11.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_11.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_12

======================================== ================================

AppWizard has created this Ex3_12 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_12 application.

Ex3_12.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_12.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_12.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_13

======================================== ================================

AppWizard has created this Ex3_13 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_13 application.

Ex3_13.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_13.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_13.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_14

======================================== ================================

AppWizard has created this Ex3_14 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_14 application.

Ex3_14.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_14.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_14.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_2

======================================== ================================

AppWizard has created this Ex3_2 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_2 application.

Ex3_2.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_2.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_2.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_3

======================================== ================================

AppWizard has created this Ex3_3 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_3 application.

Ex3_3.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_3.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_3.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_4

======================================== ================================

AppWizard has created this Ex3_4 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_4 application.

Ex3_4.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_4.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_4.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_5

======================================== ================================

AppWizard has created this Ex3_5 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_5 application.

Ex3_5.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_5.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_5.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_6

======================================== ================================

AppWizard has created this Ex3_6 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_6 application.

Ex3_6.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_6.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_6.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_6a

======================================== ================================

AppWizard has created this Ex3_6a application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_6a application.

Ex3_6a.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_6a.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_6a.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_7

======================================== ================================

AppWizard has created this Ex3_7 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_7 application.

Ex3_7.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_7.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_7.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_8

======================================== ================================

AppWizard has created this Ex3_8 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_8 application.

Ex3_8.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_8.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_8.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex3_9

======================================== ================================

AppWizard has created this Ex3_9 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex3_9 application.

Ex3_9.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex3_9.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex3_9.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_09a

======================================== ================================

AppWizard has created this Ex4_09a application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_09a application.

Ex4_09a.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_09a.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_09a.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_09b

======================================== ================================

AppWizard has created this Ex4_09b application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_09b application.

Ex4_09b.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_09b.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_09b.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_1

======================================== ================================

AppWizard has created this Ex4_1 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_1 application.

Ex4_1.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_1.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_1.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_15

======================================== ================================

AppWizard has created this Ex4_15 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_15 application.

Ex4_15.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_15.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_15.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_2

======================================== ================================

AppWizard has created this Ex4_2 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_2 application.

Ex4_2.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_2.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_2.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_3

======================================== ================================

AppWizard has created this Ex4_3 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_3 application.

Ex4_3.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_3.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_3.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_4

======================================== ================================

AppWizard has created this Ex4_4 application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_4 application.

Ex4_4.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_4.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_4.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

ReadMe

======================================== ================================

CONSOLE APPLICATION : Ex4_4a

======================================== ================================

AppWizard has created this Ex4_4a application for you.

This file contains a summary of what you will find in each of the files that

make up your Ex4_4a application.

Ex4_4a.dsp

This file (the project file) contains information at the project level and

is used to build a single project or subproject. Other users can share the

project (.dsp) file, but they should export the makefiles locally.

Ex4_4a.cpp

This is the main application source file.

//////////////////////////////////////// /////////////////////////////////////

Other standard files:

StdAfx.h, StdAfx.cpp

These files are used to build a precompiled header (PCH) file

named Ex4_4a.pch and a precompiled types file named StdAfx.obj.

//////////////////////////////////////// /////////////////////////////////////

Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you

should add to or customize.

//////////////////////////////////////// /////////////////////////////////////

Свежие статьи
Популярно сейчас
Как Вы думаете, сколько людей до Вас делали точно такое же задание? 99% студентов выполняют точно такие же задания, как и их предшественники год назад. Найдите нужный учебный материал на СтудИзбе!
Ответы на популярные вопросы
Да! Наши авторы собирают и выкладывают те работы, которые сдаются в Вашем учебном заведении ежегодно и уже проверены преподавателями.
Да! У нас любой человек может выложить любую учебную работу и зарабатывать на её продажах! Но каждый учебный материал публикуется только после тщательной проверки администрацией.
Вернём деньги! А если быть более точными, то автору даётся немного времени на исправление, а если не исправит или выйдет время, то вернём деньги в полном объёме!
Да! На равне с готовыми студенческими работами у нас продаются услуги. Цены на услуги видны сразу, то есть Вам нужно только указать параметры и сразу можно оплачивать.
Отзывы студентов
Ставлю 10/10
Все нравится, очень удобный сайт, помогает в учебе. Кроме этого, можно заработать самому, выставляя готовые учебные материалы на продажу здесь. Рейтинги и отзывы на преподавателей очень помогают сориентироваться в начале нового семестра. Спасибо за такую функцию. Ставлю максимальную оценку.
Лучшая платформа для успешной сдачи сессии
Познакомился со СтудИзбой благодаря своему другу, очень нравится интерфейс, количество доступных файлов, цена, в общем, все прекрасно. Даже сам продаю какие-то свои работы.
Студизба ван лав ❤
Очень офигенный сайт для студентов. Много полезных учебных материалов. Пользуюсь студизбой с октября 2021 года. Серьёзных нареканий нет. Хотелось бы, что бы ввели подписочную модель и сделали материалы дешевле 300 рублей в рамках подписки бесплатными.
Отличный сайт
Лично меня всё устраивает - и покупка, и продажа; и цены, и возможность предпросмотра куска файла, и обилие бесплатных файлов (в подборках по авторам, читай, ВУЗам и факультетам). Есть определённые баги, но всё решаемо, да и администраторы реагируют в течение суток.
Маленький отзыв о большом помощнике!
Студизба спасает в те моменты, когда сроки горят, а работ накопилось достаточно. Довольно удобный сайт с простой навигацией и огромным количеством материалов.
Студ. Изба как крупнейший сборник работ для студентов
Тут дофига бывает всего полезного. Печально, что бывают предметы по которым даже одного бесплатного решения нет, но это скорее вопрос к студентам. В остальном всё здорово.
Спасательный островок
Если уже не успеваешь разобраться или застрял на каком-то задание поможет тебе быстро и недорого решить твою проблему.
Всё и так отлично
Всё очень удобно. Особенно круто, что есть система бонусов и можно выводить остатки денег. Очень много качественных бесплатных файлов.
Отзыв о системе "Студизба"
Отличная платформа для распространения работ, востребованных студентами. Хорошо налаженная и качественная работа сайта, огромная база заданий и аудитория.
Отличный помощник
Отличный сайт с кучей полезных файлов, позволяющий найти много методичек / учебников / отзывов о вузах и преподователях.
Отлично помогает студентам в любой момент для решения трудных и незамедлительных задач
Хотелось бы больше конкретной информации о преподавателях. А так в принципе хороший сайт, всегда им пользуюсь и ни разу не было желания прекратить. Хороший сайт для помощи студентам, удобный и приятный интерфейс. Из недостатков можно выделить только отсутствия небольшого количества файлов.
Спасибо за шикарный сайт
Великолепный сайт на котором студент за не большие деньги может найти помощь с дз, проектами курсовыми, лабораторными, а также узнать отзывы на преподавателей и бесплатно скачать пособия.
Популярные преподаватели
Добавляйте материалы
и зарабатывайте!
Продажи идут автоматически
5167
Авторов
на СтудИзбе
437
Средний доход
с одного платного файла
Обучение Подробнее