30 關聯文字

2021-08-17 23:15:28 字數 566 閱讀 2621

現有兩個文字檔案db1.txt和db2.txt。db1.txt中第一列為姓名,第二列為英語成績;db2.txt中第一列為姓名,                          第二列為數學成績。通過姓名欄位將db1.txt關聯到db2.txt檔案生成db3.txt檔案,使db3.txt檔案的第一列為姓名,                      第二列為英語成績,第三列為數學成績,第四列為平均成績。

#include

#include

struct grade

list[1000];//建立結構體陣列

int main()

//錄入姓名和數學成績

char temp[30];

freopen("c:\\users\\dyg\\desktop\\實驗作業\\第一題\\db2.txt", "r", stdin);//開啟檔案二

int j = 0;

while (scanf("%s", temp) != eof)}}

int k = 0;

for (k = 0; k < i; k++)

return 0;

}

Leetcode30與所有單詞相關聯的字串。

題目 定乙個字串 s 和一些長度相同的單詞 words。在s 中找出可以恰好串聯 words 中所有單詞的子串的起始位置。注意子串要與 words 中的單詞完全匹配,中間不能有其他字元,但不需要考慮 words 中單詞串聯的順序。public static listfindsubstring str...

Leetcode 30 與所有單詞相關聯的字串

題目描述 給定乙個字串 s 和一些長度相同的單詞 words。在 s 中找出可以恰好串聯 words 中所有單詞的子串的起始位置。注意子串要與 words 中的單詞完全匹配,中間不能有其他字元,但不需要考慮 words 中單詞串聯的順序。示例 1 輸入 s barfoothefoobarman wo...

LeetCode 30 與所有單詞相關聯的字串

描述 給定乙個字串 s 和一些長度相同的單詞 words。在 s 中找出可以恰好串聯 words 中所有單詞的子串的起始位置。注意子串要與 words 中的單詞完全匹配,中間不能有其他字元,但不需要考慮 words 中單詞串聯的順序。示例 1 輸入 s barfoothefoobarman word...