Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1904 莫业祁 所有不包含7的数 C++ Wrong Answer 0 MS 268 KB 176 2023-12-02 14:38:50

Tests(0/4):


Code:

# include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=7;i<=n;i++){ if(i%10!=7) cout<<i<<" "; } return 0; }


Run Info:

------Input------
8
------Answer-----
1 2 3 4 5 6 8
------Your output-----
8