找出N以內的偶數

超級帥神於楷力發表於2020-12-04
#include<bits/stdc++.h>//fixed<<setprecision(2)
using namespace std;//for(int i=1;i<=a;i++)
int main()//
{
	int a;
	cin>>a;
	for(int i=1;i<=a;i++)
	if(i%2==0)
	cout<<setw(4)<<i;
    return 0;
}

相關文章