编辑代码

#include <stdio.h>
int main () {
    for(int i = 0; i <= 100 ; i = i + 2) {
            printf("%d ", i);
    }
	return 0;
}