#include <stdio.h>
#include <conio.h>
#include <locale.h>
main()
{
setlocale(LC_ALL,"RUS");
int a,b,c;
printf("vvod 3-x 4isel");
scanf("%d%d%d",&a,&b,&c);
if((a!=b && b!=c)&& c!=a)
{
if(a<b && a<c)
{
if(b<c)
{
printf("srednee b = %d",b);
}
else
{
printf("srednee c = %d",c);
}
}
if(b<a && b<c)
{
if(a<c)
{
printf("srednee a = %d",a);
}
else
{
printf("srednee c = %d",c);
}
}
if(c<a && c<b)
{
if(a<b)
{
printf("srednee a = %d",a);
}
else
{
printf("srednee b = %d",b);
}
}
}
else
{
printf("shtoto poshlo ne tak");
}
getch();
}
<!DOCTYPE html>
<html>
<head>
<title>Пробый div</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="footer">
<div class="fon"></div>
<div class="img">
<img src="footer1.png" alt="картинка1">
<p>Текст который должен распологаться справа от картинки </p>
</div>
</div>
</body>
</html>
.footer{
height:200px;
width: 1000px;
border:1px solid black;
}
.fon{
background: url(footerFon.png) repeat-x;
height: 195px;
left: 0;
bottom: 0;
position: absolute;
float: left;
}
.img{
height: 30px;
width: 30px;
float: left;
}