5 条题解
- 1
信息
- ID
- 718
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 1
- 标签
- 递交数
- 104
- 已通过
- 83
- 上传者
#include <iostream>//hetao3097453
using namespace std;
int main()
{
int n;
cin >> n;
for(int i = 1;i <= n;i++)
{
if(i % 10 == 5 || i % 10 == 8)
{
cout << i << endl;
}
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
for (int i = 1; i <= n; i++)if (i % 10 == 5 || i % 10 == 8) cout << i << endl;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 1; i <= n; i++)
{
if (i % 10 == 5 || i % 10 == 8)
{
cout << i << endl;
}
}
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
{
if(i%10==5||i%10==8)
{
cout<<i<<endl;
}
}
return 0;
}