7 条题解

  • 0
    @ 2023-12-2 15:15:18
    #include<bits/stdc++.h>
    using namespace std;
    int s[100];
    int main(){
    	int len=0;
    	while((s[len]=getchar())!='.')++len;
    	for(int i=0;i<len;i++)
    		if(s[i]!=s[len-i-1]){
    			cout<<"FALSE";
    			return 0;
    		}
    	cout<<"YES";
    	return 0;
    }
    
    • 0
      @ 2023-6-3 10:14:40
      #include<bits/stdc++.h>
      using namespace std;
      char a[150],b[150];
      int main(){
      	cin.getline(a,sizeof(a),'.');
      	for(int i=0;i<strlen(a);i++) b[strlen(a)-i-1]=a[i];
      	if(strcmp(a,b)==0) cout<<"TRUE";
      	else cout<<"FALSE";
      }
      
      • -2
        @ 2023-4-15 21:50:32
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        	string s1,s2;
        		cin>>s1;
        		s2=s1;
        		reverse(s2.begin(),s2.end());
        		if(s1==s2)
        	  cout<<"TRUE";
        	 else 
        	  cout<<"FALSE";
            return 0;
        }
        
        • -2
          @ 2023-2-25 9:14:30
          #include<bits/stdc++.h>
          using namespace std;
          int n,k=0,j=0;
          char a[100001];
          int main()
          {
          	cin>>a;
          	n=strlen(a);
          	k=n; 
          	k--;
          	for(int i=0;i<=n;i++)
          	{
          	    if(a[i]!=a[k])
          	    {
          	    	     j=1;
          	    }
          	    k--;
          	    if(i==k)
          	    {
          	    	     break;
          	    }	
          	}
          	if(j==0)
          	{
          		cout<<"TRUE";
          	}
          	else
          	{
          		cout<<"FALSE";
          	}
          	return 0;
          }
          
          • -3
            @ 2023-2-25 9:11:28

            #include<bits/stdc++.h> using namespace std; int n,k=0,j=0; char a[100001]; int main() { cin>>a; n=strlen(a); k=n; k--; for(int i=0;i<=n;i++) { if(a[i]!=a[k]) { j=1; } k--; if(ik) { break; } } if(j0) { cout<<"TRUE"; } else { cout<<"FALSE"; } return 0; }

            • -3
              @ 2023-2-22 19:11:42

              #include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e,k; cin>>a; b=a/1000; c=a/100%10; d=a/10%10; k=a%10; a=1000b+100c+10d+k; e=1000k+100d+10c+b; if(e==a) { cout<<"TRUE "<<endl; } else if(e!=a) { cout<<"FALSE "<<endl; } return 0; }

              • -3
                @ 2023-2-19 8:42:58

                #include #include using namespace std; string s,t; int main() { getline(cin,s); s=s.substr(0,s.size()-1); t=s; reverse(t.begin(),t.end()); if(t==s) cout << "TRUE " << endl; else cout << "FALSE " << endl; return 0; }

                • 1

                信息

                ID
                99
                时间
                1000ms
                内存
                16MiB
                难度
                3
                标签
                递交数
                73
                已通过
                37
                上传者