#include <iostream>
using namespace std;
int main()
{
float x,y,rxy;
cin>>x>>y;
rxy=x*x+y*y;
if ((rxy>100) || (rxy<25)) cout<<"Нет"<<endl;
else if ((rxy==100) || (rxy==25)) cout<<"На границе"<<endl;
else cout<<"Да"<<endl;
system("pause");
}
C# вот код:
using System;
class Program
{
static void Main()
{
double x=Convert.ToDouble(Console.ReadLine());
double y=Convert.ToDouble(Console.ReadLine());
double rxy=x*x+y*y;
if ((rxy>100) | (rxy<25)) Console.WriteLine("Нет");
else if ((rxy==100) | (rxy==25)) Console.WriteLine("На границе");
else Console.WriteLine("Да");
Console.ReadLine();
}
}
Бит является <span>минимальной единицей измерения информации</span>.
1) Дано число. Получить новое число с обратным значением цифр , где 0→9, 1→8, 2→7, 3→6, 4→5, а цифры 5, 6,7,8,9 не изменяются .
Иван01 [7]
Var a,h:longint;
b:integer;
begin
writeln ('введи число');
readln (a);
while a>0 do begin
b:=a mod 10;
case b of
0: b:=9;
1: b:=8;
2: b:=7;
3: b:=6;
4: b:=5;
end;
h:=h*10+b;
a:=a div 10;
end;
a:+0;
while h>0 do begin
b:=h mod 10;
a:=a*10+b;
h:=h div 10;
end;
writeln (a);
readln;
end.
#1
<script>
var b = document.getElementsById("process");
b.onclick = function() {
alert("yipee, button is pressed! :)");
}
</script>
<button id="process">PRESS THERE</button>
#2
<script>
<span>var image = document.getElementsById("image");
</span>image.<span>onmouseenter = function() {
alert("Вам нравится эта картинка?");
}</span>
</script>
<img id="image" src="" width="200px" height="200px">
Print "peviy"
input a,b
print "vtoroy"
input a1,b1,d1
c=sqr(a+b)
if a=a1 and b=b1 and c=d1 then
print "true"
else
print "false"
end if