这是我的代码,即时通讯出现错误,“ i 它是一个将每行中的单词从大写转换为小写的程序...

你能帮忙吗?谢谢

#include <iostream>

using namespace std;

int main ()
{
    const int max = 100;
    string slovo;
    int pocet_r;

    cout << "Zadaj pocet uloh:" << endl;
    cin >> pocet_r;

    if(pocet_r >= 1 && pocet_r <=100)
 {

     // funkcia na zabezpecenie minimalneho poctu chars
          for (int i = 0; i <pocet_r; i++)
     {
           cout << "Uloha " << i+1 << ":" << endl;

                cin >> slovo;

                if(slovo.size() > max)
                {
                 cout << "slovo musi mat minimalne 1 a maximalne 100 znakov" << endl;
                }
                 while( slovo.size() > max)
                 {
                  cin >> slovo;
                 }
     }
     for (int i=0; i <= slovo; i++)
            {
                while (slovo[i] >= 'A' && slovo[i] <= 'Z')
                {
                      slovo[i] = tolower(slovo[i]);
                      }
            }

 }else{
     cout << "Minimalne 1 a maximalne 100 uloh" << endl;
}
system("pause");
}

最佳答案

i <= slovo尝试将整数与字符串进行比较。用我们强大的人脑,我们知道42绝对比"This string"大,但是编译器并不聪明,因此它不允许您将整数与字符串进行比较。

您是要比较i与字符串的长度(即.length()还是.size())吗?

for (int i=0; i <= slovo.size(); i++)
//               |
// You probably want < here though, not <=

关于c++ - 'i <= slovo'中没有'operator <='的匹配项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21511036/

10-11 00:44