C语言改错

日期:2022-03-21 19:33:23 人气:1

C语言改错

if(leap=1) {printf("%d ",i );
改成
if(leap==1) {printf("%d ",i );
leap=1 改成leap == 1
    A+
热门评论