标签:命令行

文件指针使用循环打开文件在关闭为什么会出错

void main(int argc, char *argv[]) { FILE *fp; char str[100] = { 0 }; if (argc < 2) { printf(“%s\n”, *(argv + 1)); exit(1); } for (int i = 1; i < argc; i++) { strc……

为什么出不来结果

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TEL { class Program { static void Main(string[] args) { int[] arr = new int[] { 8, 2……