Создайте 5 переменных типа char, предложите пользователю ввести слово из пяти букв и покажите эти символы (слово) на экран. (Символы вводить латиницей, т.к. кирилица будет отображаться некорректно.
1) на c++ #include <iostream> using namespace std; int main() { char a=0,b=0,c=0,d=0,e=0; cout<<"enter the word which have 5 letters: "<<endl; cin>>a>>b>>c>>d>>e; cout<<"you word: "<<a<<b<<c<<d<<e<<endl; return 0; } 2) на PascalABC.Net Program n1; var a,b,c,d,e: char; begin write('enter the word which have 5 letters: '); readln(a,b,c,d,e); write('you word: ',a,b,c,d,e); end.
Answers & Comments
Verified answer
1) на c++#include <iostream>
using namespace std;
int main()
{
char a=0,b=0,c=0,d=0,e=0;
cout<<"enter the word which have 5 letters: "<<endl;
cin>>a>>b>>c>>d>>e;
cout<<"you word: "<<a<<b<<c<<d<<e<<endl;
return 0;
}
2) на PascalABC.Net
Program n1;
var a,b,c,d,e: char;
begin
write('enter the word which have 5 letters: ');
readln(a,b,c,d,e);
write('you word: ',a,b,c,d,e);
end.