#80 我太难了

Ollieto 2020-08-14 8:22:02 0

求救!救救我!

{{ vote && vote.total.up }}

共 8 条回复

Duke
#include<bits/stdc++.h>
using namespace std;
bool hws(int a){
	int shu=0,m=a;
	while(a!=0){
		shu=shu*10+a%10;
		a/=10;
	}
	if(m==shu) return true;
	else return false;	
}
int main()
{
	int n,ans=0;
	cin>>n;
	for(int i=1;i<=n;i++){
		if(hws(i)){
			ans++;
		}
	}
	cout<<ans;
	return 0;
}
chen_zhe 沙雕

代码被吃了?

chen_zhe 沙雕

不蟹

Ollieto

好的三克油~(^◇^)/你真好

root 站长

@zhangqisong good

chen_zhe 沙雕

真的是你的代码改的

chen_zhe 沙雕

请把样例过了再提交……

Ollieto

#include #include using namespace std; int main(){

bool f;	
int n,sum=0;	
string c,v;
cin>>n; 		
for(int i=1;i<=n;i++){
	c=i; 	
	v=i;			
		for(int j=v.length()-1;j>=0;j--){
		c[v.length()-j-1]=v[j];
			for(int j=0;j<=v.length()-1;j++){		
				if(c[i]!=v[j]){	
					f=false;	
				sum++;		
			break;	
		}		
				else{	
					f=true;					
			}	
		}	
	}
}	
cout<<(n-sum);
return 0;
}