问题标题: 酷町堂:2718 最后一次出现2

0
2
已解决
王光裕
王光裕
资深光能
资深光能

我的60分代码:

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<string>
using namespace std;
int main ()
{
    char a[10000],b,i,v;
    int t=0;
    cin>>b;
    gets(a);
    gets(a);
    int l=strlen(a);
    for(i=l-1;i>=0;i--)
    {
        if(a[i]==b)
        {
            cout<<i+1;
            v=i+1;
            break;  
        }
    }
    if(v==0)
    cout<<"NOTFIND";
    return 0 ;
}

告诉我错在哪!!!


0
已采纳
李彬
李彬
初级守护
初级守护

for循环前面可以这样:

string a;
char b;
cin>>b>>a;

a的长度是

a.size();

 

0
我要回答