Run ID:92681

提交时间:2024-10-06 11:10:57

#include <iostream> using namespace std; int main(){ for(int i=0;i<=100;i=i+3){ cout<<i<<' '; } }