lsmCC 发表于 2023-11-13 00:25:36

为什么会有警告啊

#include <bits/stdc++.h>
using namespace std;
int n;
const int N=101;
string a;
int main()
{
    cin>>n;
    string s;
    for(int i=0;i<n;i++)
    {
      cin>>a;
    }
    int pos=-1;
    for(int i=0;i<n;i++)
    {
      int cnt=0,ans=0;
      while((pos=a.find('ab',pos))!=-1)
      {
            cnt++; //
      }
      while (pos=a.find('ba',pos)!=-1)
      {
            ans++;
      }
      if(a.size()==1)cout<<a;
      if(cnt==ans)cout<<a;
      
      
    }
   



}

isdkz 发表于 2023-11-13 00:25:45

这段代码出现警告的原因是因为在while循环中的赋值语句(pos=a[ i].find('ba',pos)!=-1)可能会导致预期之外的行为。为了避免这个警告,你可以使用括号来明确表达赋值和比较的优先级。

正确的写法应该是(pos=a[ i].find('ba',pos)) != -1 。

修改后的代码如下:

#include <bits/stdc++.h>
using namespace std;
int n;
const int N=101;
string a;
int main()
{
    cin>>n;
    string s;
    for(int i=0;i<n;i++)
    {
      cin>>a[ i];
    }
    int pos=-1;
    for(int i=0;i<n;i++)
    {
      int cnt=0,ans=0;
      while((pos=a[ i].find('ab',pos))!=-1)
      {
            cnt++; //
      }
      while ((pos=a[ i].find('ba',pos)) != -1)
      {
            ans++;
      }
      if(a[ i].size()==1) cout<<a[ i];
      if(cnt==ans) cout<<a[ i];
    }
}

Mike_python小 发表于 2023-11-13 00:26:06

这段代码会产生警告的原因在于使用了未初始化的变量并且未能正确地对字符串搜索进行处理。警告中可能包含了以下问题:

1. pos 变量在使用前并未初始化,应该在每次循环开始时将其置为 -1。
2. 在 while 循环内部,pos 变量在进行字符串查找后需要正确更新,以便下一次查找从上一次结束的位置继续而不是从头开始。

此外,建议不要在生产代码中使用 #include <bits/stdc++.h>,这是非标准的用法,会使代码在不同编译环境下的行为不确定。正确的做法是只包含所需的头文件,比如 #include <iostream> 和 #include <string>。

以下是修改后的代码,包括了对 pos 变量的初始化和更新,以及修复了字符串搜索的问题:


#include <iostream>
#include <string>
using namespace std;

int main() {
    int n;
    const int N = 101;
    string a;
   
    cin >> n;
    for (int i = 0; i < n; i++) {
      cin >> a;
    }

    for (int i = 0; i < n; i++) {
      int pos = -1;
      int cnt = 0, ans = 0;
      while ((pos = a.find('ab', pos + 1)) != string::npos) {
            cnt++;
      }
      pos = -1; // 重置 pos
      while ((pos = a.find('ba', pos + 1)) != string::npos) {
            ans++;
      }
      if (a.size() == 1) {
            cout << a;
      }
      if (cnt == ans) {
            cout << a;
      }
    }
    return 0;
}


希望这可以帮助你解决警告问题。
页: [1]
查看完整版本: 为什么会有警告啊