1. #include <iostream> #include <stdio.h> #include <math.h> using namespace std;
int main() { long double a,b,c; setlocale(LC_ALL,"Russian"); cout <<"Введите катеты теугольника "; cin>>a>>b; c=sqrtl(a*a+b*b); cout<<"Гепотенуза равна "<<c; return 0; }
2. #include <iostream> #include <stdio.h> #include <math.h> using namespace std;
int main() { long double a,s,v; setlocale(LC_ALL,"Russian"); cout <<"Введите ребро куба "; cin>>a; s=6*a*a; v=a*a*a; cout<<"Площадь поверхности равна "<<s<<", объем куба равен "<<v<<"."; return 0; } 3. #include <iostream> #include <stdio.h> #include <math.h> using namespace std;
int main() { long double a,b,time; setlocale(LC_ALL,"Russian"); cout <<"Введите размер наследства и трату в месяц "; cin>>a>>b; time=a/(b*12) cout<<"Наследства хватит на "<<time<<" лет"; return 0; }
nadyatsoi
24.02.2023
// PascalABC.NET 3.0, сборка 1088 const nDay:array[1..12] of integer=(31,28,31,30,31,30,31,31,30,31,30,31); type Date=record Day,Month,Year:integer end;
function DOW(Dat:Date):integer; // день недели по дате. 0-Вс. 1-Пн, 7-Сб var a,y,m:integer; begin With Dat do begin a:=(14 - month) div 12; y:=Year-a; m:=month+12*a-2; DOW:=(7000+(day+y+y div 4-y div 100+y div 400+(31*m) div 12)) mod 7 end end;
procedure DMY2Date(d,m,y:integer; var data:Date); // Преобразует к дате заданные день, месяц и год begin data.Day:=d; data.Month:=m; data.Year:=y end;
procedure LastDays(month,year:integer; var Wd,Fr:Date); // даты последней среды (Wd) и пятницы (Fr) для месяца в году } var LastDay:Date; n:integer; begin n:=nDay[month]; if (month=2) and (year mod 4 = 0) then Inc(n); DMY2Date(n,month,year,LastDay); n:=DOW(LastDay); // номер последнего дня недели Wd.Month:=month; Wd.Year:=year; if n<3 then Wd.Day:=LastDay.Day-(n+4) else if n=3 then Wd.Day:=LastDay.Day else Wd.Day:=LastDay.Day+3-n; Fr.Month:=month; Fr.Year:=year; if n<5 then Fr.Day:=LastDay.Day-(n+2) else if n=3 then Fr.Day:=LastDay.Day else Fr.Day:=LastDay.Day-1 end;
var Wd,Fr:Date; ff,mf:Text; m:integer; begin Assign(ff,'father.txt'); Rewrite(ff); Assign(mf,'mother.txt'); Rewrite(mf); // Сентябрь-декабрь 2015 года for m:=9 to 12 do begin LastDays(m,2015,Wd,Fr); if Odd(Wd.Day) then Writeln(mf,Wd.Day,'.',m,'.2015 - 1 класс') else Writeln(ff,Wd.Day,'.',m,'.2015 - 1 класс'); if Odd(Fr.Day) then Writeln(mf,Fr.Day,'.',m,'.2015 - 5 класс') else Writeln(ff,Fr.Day,'.',m,'.2015 - 5 класс') end; // Январь - май 2016 года for m:=1 to 5 do begin LastDays(m,2016,Wd,Fr); if Odd(Wd.Day) then Writeln(mf,Wd.Day,'.',m,'.2016 - 1 класс') else Writeln(ff,Wd.Day,'.',m,'.2016 - 1 класс'); if Odd(Fr.Day) then Writeln(mf,Fr.Day,'.',m,'.2016 - 5 класс') else Writeln(ff,Fr.Day,'.',m,'.2016 - 5 класс') end; Close(ff); Close(mf) end.
Содержимое выходных файлов: father.txt 30.9.2015 - 1 класс 28.10.2015 - 1 класс 30.10.2015 - 5 класс 30.12.2015 - 1 класс 24.2.2016 - 1 класс 26.2.2016 - 5 класс 30.3.2016 - 1 класс
mother.txt 25.9.2015 - 5 класс 25.11.2015 - 1 класс 27.11.2015 - 5 класс 25.12.2015 - 5 класс 27.1.2016 - 1 класс 29.1.2016 - 5 класс 25.3.2016 - 5 класс 27.4.2016 - 1 класс 29.4.2016 - 5 класс 25.5.2016 - 1 класс 27.5.2016 - 5 класс
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
int main()
{
long double a,b,c;
setlocale(LC_ALL,"Russian");
cout <<"Введите катеты теугольника ";
cin>>a>>b;
c=sqrtl(a*a+b*b);
cout<<"Гепотенуза равна "<<c;
return 0;
}
2.
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
int main()
{
long double a,s,v;
setlocale(LC_ALL,"Russian");
cout <<"Введите ребро куба ";
cin>>a;
s=6*a*a;
v=a*a*a;
cout<<"Площадь поверхности равна "<<s<<", объем куба равен "<<v<<".";
return 0;
}
3.
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
int main()
{
long double a,b,time;
setlocale(LC_ALL,"Russian");
cout <<"Введите размер наследства и трату в месяц ";
cin>>a>>b;
time=a/(b*12)
cout<<"Наследства хватит на "<<time<<" лет";
return 0;
}