利用for循环打出一百句HelloWorld
#include<stdio.h>main(){int i;for(i=0;i<100;i++){printf("HelloWorld\n");} }
```