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

📄 words_maxmin_1.cpp

📁 A group of word-analysis examples for C++/STL novices
💻 CPP
字号:
/*
*  Description:
*
*    Report the longest and the shortest words in your input.
*
*  History:
*
*    Initial version created by Royal, Mar. 2004.
*
*  Notes:
*
*    This code has been written to conform to standard C++ and STL. It has been
*    compiled successfully using GNU C++ 3.2, Borland C++ 5.5, and Visual C++ 7.0.
*/

#include <iostream>
#include <string>
#include <limits>

using namespace std;

int main()
{
    int maxsize(0), minsize(100);
    string maxword, minword, temp;
    cout << "please input words:";
    while(cin >> temp)
    {
        int size = temp.size();
        if (size > maxsize)
        {
            maxsize = size;
            maxword = temp;
        }
        if(size < minsize)
        {
            minsize = size;
            minword = temp;
        }
    }
    cout << "The longest word is \"" << maxword << "\"; it's length is " << maxsize << endl;
    cout << "The shortest word is \"" << minword << "\"; it's length is " << minsize << endl;
}

⌨️ 快捷键说明

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