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 <stdio.h> | |
#include <conio.h> | |
#include <stdlib.h> | |
#include <graphics.h> | |
#include <dos.h> | |
class gr_init | |
{ | |
public: | |
gr_init(int driver=0) | |
{ |
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 <stdio.h> | |
#include <conio.h> | |
#include <stdlib.h> | |
#include <graphics.h> | |
#include <dos.h> | |
class gr_init | |
{ | |
public: | |
gr_init(int driver=0) | |
{ |
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
program l2; | |
uses crt; | |
type struct = record | |
fam, group:string[30]; | |
year:integer; | |
eval:array[1..5] of integer; | |
end; | |
var info:struct; f:text; fc_name:string; fc_n:integer; x_gr:string[30]; x_year:integer; | |
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
/*--------------------------------------- | |
Автор: Комиссаров Константин | |
Дата создания: 27 Янв 2013 | |
Дата последнего обновления: 27 Янв 2013 | |
----------------------------------------*/ | |
#include <iostream> | |
#include <cstdlib> | |
#include <conio.h> | |
struct struc |
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 <stdio.h> | |
#include <conio.h> | |
#include <string.h> | |
void main(void) | |
{ | |
struct stud | |
{ | |
char fam[10],gr[10]; |
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
Uses crt; | |
const n=3; | |
Type matr=array[1..n,1..n] of integer; | |
Var a,b,c:matr; max,sm,i:integer; | |
m:array[1..3] of integer; | |
Procedure InMatr(Var d:matr; n:integer; matr_name:char); | |
Var i,j:integer; | |
begin | |
writeln('Vvedite matricy ',matr_name,' iz ', n, ' elementov:'); | |
for i:=1 to n do |
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
diff --git a/src/game/BattleGround.cpp b/src/game/BattleGround.cpp | |
old mode 100644 | |
new mode 100755 | |
index 78088a2..b36665e | |
--- a/src/game/BattleGround.cpp | |
+++ b/src/game/BattleGround.cpp | |
@@ -1360,10 +1360,13 @@ void BattleGround::AddPlayer(Player *plr) | |
WorldPacket data; | |
sBattleGroundMgr.BuildPlayerJoinedBattleGroundPacket(&data, plr); | |
SendPacketToTeam(team, &data, plr, false); |
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 <stdio.h> | |
#include <stdlib.h> | |
struct stud | |
{ | |
char fam[10],name[10],group[10]; | |
int gr,rs; | |
}; | |
struct Node // Звено списка |
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 <stdio.h> | |
#include <conio.h> | |
struct stud | |
{ | |
char fam[10],name[10],group[10]; | |
int gr,rs; | |
}; | |
struct list |
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 <iostream> | |
#include <conio.h> | |
#include <string.h> | |
class employee | |
{ | |
public: | |
employee(char *, long, float); | |
~employee(void) { printf("object for %s is distructing\n",name); } | |
void show_employee(void); |
NewerOlder