咖啡


私信TA

用户名:Tianxn

访问量:138130

签 名:

十年OI一场空,不开LL见祖宗。

等  级
排  名 10
经  验 27297
参赛次数 10
文章发表 197
年  龄 22
在职情况 学生
学  校 西安电子科技大学
专  业 软件工程

  自我简介:

解题思路:

首先在遍历上,只遍历奇数,之间排除能被2整除的数,然后就是取每一位上的数看是否为2;细节再代码中

注意事项:

注意fg标志的置零位置,和用一个中间遍历t代替i

参考代码:

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <cmath>
#include <cctype>
#include <cstring>
#include <string>
#include <stack> 
#include <algorithm>
#include <functional>
using namespace std;
int main()
{
	int n, fg, sum = 0;
	scanf("%d", &n);
	for(int i = 1; i <= n; i += 2)
	{
		int t = i;
		fg = 0;
		while(t)
		{
			if(t%10 == 2)
			{
				fg = 1;
				break;
			}
			t /= 10;
		}
		if(!fg)
		{
			sum += i;
		}
	}
	printf("%d\n", sum);
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »