第四题数的分解
Posted 猪八戒1.0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第四题数的分解相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h>
using namespace std;
bool check(int x)
int t=x;
while(t)
if(t%10==2||t%10==4)
return false;
t/=10;
return true;
int main()
int k;
int ans=0;
for(int i=1;i<2019;i++)
for(int j=i+1;j<2019;j++)
k=2019-i-j;
if(check(i)&&check(j)&&check(k)&&i<j&&j<k)
ans++;
cout<<ans;
return 0;
以上是关于第四题数的分解的主要内容,如果未能解决你的问题,请参考以下文章