for_loop2.c 91 字节
Newer Older
B
Ben 已提交
1 2 3 4 5
#include <stdio.h>

int main(){
    for (int i=0; i < 10; i++) printf("Hello #%i\n", i);
}