Объяснение:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1="Петров", s2="Иван", s3="Алексеевич", temp;
temp = s1; //присваиваем значение s1 временной переменной temp
s1 = s2;
s2 = s3;
s3 = temp;
cout << s1 << s2 << s3 <<;
return 0;
}
Объяснение:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1="Петров", s2="Иван", s3="Алексеевич", temp;
temp = s1; //присваиваем значение s1 временной переменной temp
s1 = s2;
s2 = s3;
s3 = temp;
cout << s1 << s2 << s3 <<;
return 0;
}