Type date = record day: 1..31; month: 1..12; year: integer ; end;var a: date := (day: 8; month: 7; year: 2012); b: date := (day: 6; month: 7; year: 2012); c:integer; procedure OutDate(d: date);begin with d do writeln(day, '.', month, '.', year);end;begin if a.year > b.year then c:=1 else c:=-1 ; if a.year = b.year then if a.month > b.month then c:=1 else c:=-1; if a.year = b.year then if a.month = b.month then if a.day > b.day then c:=1 else c:=-1; if a.year = b.year then if a.month = b.month then if a.day = b.day then c:=0; OutDate(a); OutDate(b); writeln('otwet:', c);end.
procedure OutDate(d: date);begin with d do writeln(day, '.', month, '.', year);end;begin if a.year > b.year then c:=1 else c:=-1 ; if a.year = b.year then if a.month > b.month then c:=1 else c:=-1; if a.year = b.year then if a.month = b.month then if a.day > b.day then c:=1 else c:=-1; if a.year = b.year then if a.month = b.month then if a.day = b.day then c:=0; OutDate(a); OutDate(b); writeln('otwet:', c);end.
ниже
Объяснение:
#include <iostream>
using namespace std;
void main()
{
SetConsoleCP(1251);//Включаем русский язык
SetConsoleOutputCP(1251);
int a,b,i;//Инициализация переменных
a=rand()%10+1;//Генерируем число от 1 до 10
cout<<"Компьютер загадал число от 1 до 10\n";
cout<<"Введите число и нажмите <Enter>\n\n";
for(i=1;i<6;i++)//Цикл проверки
{
cin>>b;//Ввод числа
if(b==a)//Сравнение чисел
{
cout<<"Вы выиграли! Поздравляю!\n";
cout<<"Вы отгадали число с "<<i<<"-ой попытки!\n";
break;
}
if(b>a)
{
cout<<"введённое число больше задуманного\n";
}
if(b<a)
{
cout<<"введённое число меньше задуманного \n";
}
}
if(b!=a&&i==5)//Проверка
{
cout<<"Вы не смогли угадать число\n";
}
}