This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //--------------------------------------------------------------------------- | |
| Application | |
| //--------------------------------------------------------------------------- | |
| //--------------------------------------------------------------------------- | |
| #include <vcl.h> | |
| #pragma hdrstop | |
| #include "FunctionsForm.h" | |
| //--------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vcl.h> // Visual Component Library | |
| #include <stdio.h> // standard input/output header | |
| #include <conio.h> //console input-output | |
| #include <math.h> //mathematics | |
| #include <stdlib.h> //standard library | |
| #pragma hdrstop | |
| //--------------------------------------------------------------------------- | |
| #pragma argsused | |
| int main(int argc, char* argv[]) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vcl.h> // Visual Component Library | |
| #include <stdio.h> // standard input/output header | |
| #include <conio.h> //console input-output | |
| #include <math.h> //mathematics | |
| #include <stdlib.h> //standard library | |
| #pragma hdrstop | |
| #pragma argsused | |
| //--------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vcl.h> // Visual Component Library | |
| #include <stdio.h> // standard input/output header | |
| #include <conio.h> //console input-output | |
| #include <math.h> //mathematics | |
| #include <stdlib.h> //standard library | |
| #include <alloc.h> //work with dynamic memory | |
| #pragma hdrstop // | |
| #pragma argsused // | |
| int main(int argc, char* argv[]) //1 сделать зацикливание x 2 рандом или ввод с клавы 3 x изучить маллок и каллок | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //декларация библиотек | |
| #include <vcl.h> // Visual Component Library | |
| #include <stdio.h> // standard input/output header | |
| #include <conio.h> //console input-output | |
| #include <math.h> //mathematics | |
| #include <stdlib.h> //standard library | |
| #include <alloc.h> //work with dynamic memory | |
| #pragma hdrstop // | |
| #pragma argsused // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vcl.h> | |
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <math.h> | |
| #include <stdlib.h> | |
| #include <classes.hpp> | |
| #pragma hdrstop | |
| int main() | |
| { | |
| int sum = 0, i=0,n,count,b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vcl.h> | |
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <math.h> | |
| #include <stdlib.h> | |
| #include <classes.hpp> | |
| #pragma hdrstop | |
| void main (void){ | |
| char str[25][81],str_variable[81],str_input[81]; | |
| int counter_string,counter_id_string,n,i,g,k,len_str_input,r; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vcl.h> | |
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <math.h> | |
| #include <stdlib.h> | |
| #include <classes.hpp> | |
| #pragma hdrstop | |
| void addon(void); | |
| void main(void); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Libraries | |
| #include <vcl.h> | |
| #pragma hdrstop | |
| #include "Unit1.h" | |
| #include<math.h> | |
| #pragma resource "*.dfm" | |
| //--------------------------------------------------------------------------- | |
| //Main | |
| TForm1 *Form1; | |
| //описание(декларация) прототипов функций |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //--------------------------------------------------------------------------- | |
| #include <vcl.h> | |
| #pragma hdrstop | |
| #include "Unit1.h" | |
| #include <stdio.h> | |
| #include <io.h> | |
| //--------------------------------------------------------------------------- | |
| #pragma package(smart_init) | |
| #pragma resource "*.dfm" | |
| TForm1 *Form1; |