摘要: C #include <stdio.h> int main(void) { FILE *fptr = fopen("code.txt", "w"); for(int i=0; i<=999999; i++) { fprintf(fptr, "%06d\n", i); } fclose(fptr); 阅读全文
posted @ 2021-08-26 13:55 enjoy_jun 阅读(204) 评论(0) 推荐(0)