Паскаль
Var a,b,h: double;
Begin
write('Введите a: '); read(a);
write('Введите b: '); read(b);
write('Введите h: '); read(h);
writeln('__________________________');
writeln('| x | F(x) |');
writeln('|_____|____________________|');
while a <= b do begin
writeln('|',a:5,'|', a-abs(cos(a)):20,'|');
a:= a + h;
end;
write('|_____|____________________|');
end.
С#
class Program
{
static void Main(string[] args)
{
Console.Write("Введите a: ");
double a = Convert.ToDouble(Console.ReadLine());
Console.Write("Введите b: ");
double b = Convert.ToDouble(Console.ReadLine());
Console.Write("Введите h: ");
double h = Convert.ToDouble(Console.ReadLine());
Console.WriteLine(" ____________________");
Console.WriteLine("| x | F(x) |");
Console.WriteLine("|_____|______________|");
while (a <= b)
{
Console.WriteLine("|{0,5}|{1,15:0.000000000|}", a, a-Math.Abs(Math.Cos(a)));
a += h;
}
Console.WriteLine("|_____|______________|");
Console.ReadLine();
}
}
C/C++
#include "stdafx.h"
#include "locale.h"
#include "stdlib.h"
#include <math.h>
#include <iostream>
using namespace std;
int main()
{
double a=0,b=0,h=0;
setlocale(0,"russian");
printf("Введите a: ");
cin >> a;
printf("Введите b: ");
cin >> b;
printf("Введите h: ");
cin >> h;
printf(" ____________________\n");
printf("| x | F(x) |\n");
printf("|_____|______________|\n");
while (a <= b)
{
printf("|%5.2f|%14.9f|\n", a, a-abs(cos(a)));
a += h;
}
printf("|_____|______________|\n");
system("pause");
}
Кнопки Page Up и Page Down позволяют "листать" страницы текста;
Комбинация клавиш Ctrl+ стрелка(влево или вправо) позволяет перемещаться по словам;
Кнопка Home возвращает в начало текста;
Кнопка End перемещает в конец текста.
+ Вони можуть робити всю роботу за тебе
+Вони не можуть захворити
-Вони можуть зламатися
-Вони ніколи не зможуть замінити людей.
4. c=90
5. c=135
6. s=30
делал в Паскале, надёжно
Python
n=int(input())
sum=0
for i in xrange(n):
a=int(input())
if a%2!=0 and a<=30:
sum=a**3+sum
print(sum)