63 条题解

  • -1
    @ 2026-7-20 17:29:24
    #include <bits/stdc++.h>
    using namespace std;
    int n;
    int main()
    {
        cin >> n;
    	for ( int i = 1; i <= n; i++ )
    	{
    		if ( i % 10 == 8 )
    		{
    			cout << i << " "  << 2 * i << " " << 4 * i << endl;
    		}		
    	}
    	return 0;
    }
    
    

    信息

    ID
    1
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    5258
    已通过
    1484
    上传者