한 행에 다섯개씩.. 답변부탁드립니다ㅠㅠ
연자두
2023.04.01
#include stdafx.h
int _tmain(int argc, _TCHAR* argv[])
{
int age, divisor, count=0;
printf(윤년:\n);
for(age=1000;age=2000;age++)
{
if((age%4==0 && age%100!=0) || age%400==0)
{
printf(%d\n,age);
}
}
return 0;
}
윤년값을 한행에 다섯개씩 나열하라는데.. 어느부분에 어떻게넣어야할지 잘모르겠어서요ㅠㅠ;
답변부탁드립니다....(_ _)