c-for循环

 

 

#include <stdio.h>

int main()
{
    int n=0;
        
    for (n=0;n<10;n++){
        printf("%d",n);
    }
    
        
    return 0;
}

 

 

 

 

 

posted @ 2020-07-18 09:00  天子骄龙  阅读(152)  评论(0编辑  收藏  举报