int main()
{
	
	string str("I think you will a c++ programmer");
	string::iterator i=str.begin();

	while(i!=str.end()||!isspace(*i))
	{
		*i=toupper(*i);
		++i;
	}
	
	while(1)
	{
		 
	}
	return 0;
}

相关文章:

  • 2021-06-05
  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-18
  • 2022-01-15
  • 2021-08-29
  • 2021-12-05
  • 2021-06-18
  • 2021-12-23
  • 2021-11-27
相关资源
相似解决方案