Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
48324 张瑞涵 C语言6.4 C++ Accepted 4 MS 272 KB 130 2023-05-26 12:56:50

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ for(int i=100;i<=200;i++){ if(i%3!=0)cout<<i<<" "; } return 0; }