⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soln4_3.cpp

📁 Wrox.Ivor.Hortons.Beginning.Visual.C.Plus.Plus.2008 With sourcecode
💻 CPP
字号:
// Soln4_3.cpp
#include <iostream>
#include <string>
using std::cout;
using std::endl; 

int main()
{
   char str[] = "Doctor Livingstone, I presume?";
   cout << str << endl;                     // Output the string

   for (unsigned int i = 0; i < strlen(str); i += 2)
   {
      if (str[i] >= 'a' && str[i] <= 'z')   // If it's lowercase letter
         str[i] -= 32;                      // change to uppercase
   }

   cout << str << endl;                     // Output the modified string
   return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -