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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><style> | |
.player { | |
position: absolute; | |
} | |
</style> | |
</head><body><div class="player" style=" | |
top: 0; | |
left: 0; | |
"> | |
<img src="./Man_files/Man.png" style=" |
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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><style> | |
.object{ | |
position: absolute; | |
background-color: red; | |
width: 100px; | |
height: 100px; | |
} | |
</style> | |
</head><body><div class="object" style=" | |
top: 0px; |
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
<head> | |
<meta charset=utf-8> | |
<style> | |
.q { | |
width: 100px; | |
height: 100px; | |
background: red; | |
border: solid; | |
} | |
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
<head> | |
<meta charset=utf-8> | |
<style> | |
.score { | |
position: absolute; | |
bottom: 0; | |
right: 0; | |
background: blue; | |
color: white; | |
} |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> | |
<style> | |
.square{ | |
position:absolute; | |
width:100px; | |
height:100px; | |
background: red; |
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
<head> | |
<meta charset=utf-8> | |
<style> | |
.air{ | |
background: rgb(255,255,255); | |
} | |
.dirt{ | |
background: rgb(153,76,0); | |
} | |
.stone{ |
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
<head> | |
<meta charset=utf-8> | |
<style> | |
.block_stone { | |
background: rgb(192,192,192); | |
width: 20px; | |
height: 20px; | |
} | |
.block_air { |
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
<head> | |
<meta charset=utf-8> | |
<style> | |
.block_wall { | |
background: rgb(192,192,192); | |
width: 20px; | |
height: 20px; | |
} | |
.block_air { |
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
local component = require("component") | |
local colors = require("colors") | |
local sides = require("sides") | |
local rs = component.redstone | |
while true do | |
for i = 0, 5 do | |
if (getBundledInput(sides[i], colors.red == 15)) then | |
for i = 0, 5 do | |
setBundledOutput(sides[i], colors.blue, 15) | |
end |
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 n6; | |
var number, ed, des, sot, tis:integer; | |
res:string; | |
function lang(var num:integer; tip:string):string; | |
begin | |
case num of | |
1:case tip of | |
'ed':result:='Один'; | |
'des':result:=lang(num, 'ed')+'надцать '; | |
'sot':result:='Сто '; |