文章
10
粉丝
179
获赞
5
访问
30.8k
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF=1e9;
int n=0;
string str,a,b;
int strshu,x,y;
int sum=0;
stringstream ss;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while(cin>>n){//输入n
for(int i=1;i<=n;i++){
str=to_string(i); //每次循环,都将数转为字符串,方便查看里面是否存在‘7’这个数字
if(i%7 !=0 && str.find('7')==-1){
sum+=i*i;//求平方和
}
}
cout<<sum<<endl;
&nbs...
登录后发布评论
暂无评论,来抢沙发