求救!救救我!
#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; }
代码被吃了?
不蟹
好的三克油~(^◇^)/你真好
@zhangqisong good
真的是你的代码改的
请把样例过了再提交……
#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; }
共 8 条回复
代码被吃了?
不蟹
好的三克油~(^◇^)/你真好
@zhangqisong good
真的是你的代码改的
请把样例过了再提交……
#include #include using namespace std; int main(){