91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 208KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2021-05-12
  • 語言: 其他
  • 標簽: 文件操作??

資源簡介

修改文件中某行數據,文件操作,寫文件,讀文件

資源截圖

代碼片段和文件信息

//?826.cpp?:?Defines?the?entry?point?for?the?console?application.
//

#include?“stdafx.h“
#include?“stdio.h“
#include?

int?main(int?argc?char*?argv[])
{
char?szTmp[100];

//寫入a.txt?7X7?數據均是1000
FILE*?FP?=?fopen(“D:\\a.txt““w“);
for(int?k=0;?k<7;?k++){
for(int?m=0;?m<7;?m++)
fprintf(FP“%d?“1000);
fprintf(FP“\n“);
}
fclose(FP);



FILE*?fp;
fp?=?fopen(“D:\\a.txt““r+“);

int?i?=?0;
int?x?=?2;
int?nGoalLineBytes?=?0;

//1行的字節數
fgets(szTmp100fp);
int?number?=?strlen(szTmp);

//累加讀到的行的字節數
fgets(szTmp100fp);
number?+=?strlen(szTmp);

//判斷需要修改的那一行之前是否有數據
if(fgets(szTmp100fp)?!=?NULL){

nGoalLineBytes?=?strlen(szTmp);

//將此行數據以空替代
fseek(fpnumberSEEK_SET);
while(1){
i++;
fprintf(fp“?“);
if(i?==?nGoalLineBytes) break;
}
}

//更新目標行
fseek(fpnumberSEEK_SET);
fprintf(fp“\n“);
for(i=0;?i<7;?i++) fprintf(fp“%d?“x);


fclose(fp);
return?0;
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2015-08-27?17:30??20150826FileChangeOneRowData\
?????文件????????1036??2015-08-27?09:18??20150826FileChangeOneRowData\826.cpp
?????文件????????4500??2015-08-26?10:13??20150826FileChangeOneRowData\826.dsp
?????文件?????????531??2015-08-26?10:13??20150826FileChangeOneRowData\826.dsw
?????文件???????41984??2015-08-27?17:30??20150826FileChangeOneRowData\826.ncb
?????文件???????48640??2015-08-27?17:30??20150826FileChangeOneRowData\826.opt
?????文件????????1303??2015-08-27?17:30??20150826FileChangeOneRowData\826.plg
?????目錄???????????0??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\
?????文件??????180266??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\826.exe
?????文件??????188980??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\826.ilk
?????文件????????3938??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\826.obj
?????文件??????187096??2015-08-27?09:13??20150826FileChangeOneRowData\Debug\826.pch
?????文件??????459776??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\826.pdb
?????文件????????1672??2015-08-27?09:13??20150826FileChangeOneRowData\Debug\StdAfx.obj
?????文件???????41984??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\vc60.idb
?????文件???????53248??2015-08-27?17:30??20150826FileChangeOneRowData\Debug\vc60.pdb
?????文件????????1190??2015-08-26?10:13??20150826FileChangeOneRowData\ReadMe.txt
?????文件?????????290??2015-08-26?10:13??20150826FileChangeOneRowData\StdAfx.cpp
?????文件?????????667??2015-08-26?10:13??20150826FileChangeOneRowData\StdAfx.h

評論

共有 條評論