Word capitalization codeforces solution
Codeforces 281A. Word Capitalization Solution in C
#include <stdio.h> #include <string.h> int main() { char s[101]; scanf("%s", s); s[0] = toupper(s[0]); printf("%s\n", s); return 0; }
Codeforces 281A. Word Capitalization Solution in CPP
#include<iostream> #include<string>using namespace std; int main() { string s; cin>>s; s[0]=towupper(s[0]); cout<<s; }
Your article helped me a lot, is there any more related content? Thanks!
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article.
Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.
Thank you for your sharing. I am worried that I lack creative ideas. It is your article that makes me full of hope. Thank you. But, I have a question, can you help me?