Создайте два класса с именами Movie и Cartoon, оба с параметрами: - title
- rating.
Создайте 5 объектов Movie и 6 обьектов Cartoon, дайте им названия и случайные рейтинги в диапазоне (0-10).
Добавьте созданные объекты в одну и ту же коллекцию.
Определите фильм/ы с наивысшим рейтингом(исключая мультфильмы) из коллекции, и отобразите его/их заголовок/ки.
Вот оригинал на английском:
Design two classes named Movie and Cartoon, both with properties
- title
- rating
Create 5 Movie and 6 Cartoon objects, give them titles and
random ratings in range (0 - 10).
Add created objects to the same collection.
Determine the highest rated movie(s), cartoons excluded, from
the collection and display its titles.
b = pow( c, 2); c++; cout << b << " ";} while(c<51); system("pause");
}
1)#include<iostream>#include <stdlib.h>#include<math.h>using namespace std;int main(){int c=0, b;
while(c<51){
b = pow( c, 2); c++; cout << b << " ";} system("pause");
}
3)#include<iostream>#include <stdlib.h>#include<math.h>using namespace std;int main(){int c=0, b;
for(c; c<51; c++){
b = pow( c, 2); cout << b << " ";} system("pause");
}
var translatedText:string;
function translate(s:string):string;
const
gl:set of char=
['А','Е','Ё','И','О','У','Ы','Э','Ю','Я','а','е','ё','и','о','у','ы','э','ю','я'];
zn:set of char=['.',',','-','!','?','"',':'];
var i:integer;
begin
for i:=length(s) downto 1 do
if s[i] in gl+zn then delete(s,i,1);
while pos(' ',s)>0 do delete(s,pos(' ',s),1);
translate:=s;
translatedText:=s;
end;
begin
translate('Удивительный факт, но текст на языке НЕРАЗБОРЧИВО оказывается довольно просто читать. Достаточно небольшой тренировки - и вы сможете это делать.');
writeln(translatedText);
end.
Результат:двтльнй фкт н ткст н зк НРЗБРЧВ кзвтс двльн прст чтть Дсттчн нбльшй трнрвк в смжт т длть