|
Qo'yilgan masala
|
bet | 5/5 | Sana | 22.02.2023 | Hajmi | 1.26 Mb. | | #43126 |
Bog'liq MTA 4if (ch != ' ')
t = t + ch;
else
{
cout << (char)toupper(t[0]) << ". ";
t = "";
}
}
string temp = "";
for (int j = 0; j < t.length(); j++)
{
if (j == 0) temp = temp + (char)toupper(t[0]);
else
temp = temp + (char)tolower(t[j]);
}
cout << temp << endl;
}
int main()
{
string str = "Mamajonov Toxirjon";
printInitials(str);
}
|
| |