Сергей_Евгеньевич1255
?>

решить, я не понимаю что тут надо сделать(・o・)

Информатика

Ответы

sport2293032

Слово вводится с клавиатуры латиницей(максимум 19 символов)

 

#include <iostream>
using std::cout;
using std::cin;
using std::endl;
#include <cstring>
using std::strlen;
using std::strcat;
#include <iomanip>
using std::setw;

int main()
{
   char s[20];

   cout << "Enter the word: ";
   cin >> setw(20) >> s;

   char s2[strlen(s) * 3 + 1];

   for(int i = 0; i < strlen(s); i++)
   {
      s2[i] = '*';
   }
   s2[strlen(s)] = '\0';

   strcat(s2, s);

   for(int i = strlen(s2); i < sizeof(s2); i++)
   {
      s2[i] = '*';
   }
   s2[sizeof(s2)] = '\0';

   cout << s2 << endl;

   return 0;
}


Дано слово. добавить к нему в конец и в начало столько звездочек, сколько букв в этом слове. слово л
st7307

var a:array[1..10,1..15]of integer;
i,j,n,x:integer;
begin
for i:=1 to 10 do for j:=1 to 15 do a[i,j]:=random(101);
for i:=1 to 10 do begin for j:=1 to 15 do write(a[i,j],' '); if j=15 then writeln; end;
readln(x);
for i:=1 to 10 do for j:=1 to 15 do
if a[i,j]=x then inc(n);
writeln(n);
end.

 

var a:array[1..10,1..15]of integer;
i,j,k:integer;
begin
for i:=1 to 10 do for j:=1 to 15 do a[i,j]:=random(101);
for i:=1 to 10 do begin for j:=1 to 15 do write(a[i,j],' '); if j=15 then writeln; end;
for i:=1 to 10 do for j:=1 to 15 do
if a[i,j] mod 2=0 then inc(k);
writeln(k);
end.

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

решить, я не понимаю что тут надо сделать(・o・)
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

kuchino09
ragimovelshad
Svetlana1335
galichka12
goldglobustour725
detymira
Surkova_Pavlovna
tgeraskina
andreykrutenko
ekasatkina
kamalfayed229
andreich97
Bogdanov
Chausmonk4
ann-perminova2008