Ответы
Ответ дал:
0
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\Так как язык не указан, пишу на c++\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
#include <iostream>
using namespace std;
int main() {
char s[] = "Oh, this is my beautiful obscura...";
size_t i = 0;
while (s[i] != ',' && s[i] != ' ') {
s[i] = '#';
i++;
}
cout << s << endl;
system("pause");
return 0;
}
\Так как язык не указан, пишу на c++\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
#include <iostream>
using namespace std;
int main() {
char s[] = "Oh, this is my beautiful obscura...";
size_t i = 0;
while (s[i] != ',' && s[i] != ' ') {
s[i] = '#';
i++;
}
cout << s << endl;
system("pause");
return 0;
}
Вас заинтересует
2 года назад
2 года назад
3 года назад
3 года назад
9 лет назад
10 лет назад
10 лет назад