编写一个程序,输出 1到 100之间(包括1和100)的全部偶数。
#include<iostream> using namespace std; int main() { for(int i=2;i<101;i+=2){ cout<<i<<endl; } return 0; }