11 2021 档案

摘要://本次课任务,从文本文件中读入单词列表,然后显示在屏幕上 #include<stdio.h> //定义结构体类型,用于表示单词类型typedef struct word{ char spell[100]; //定义spell成员,用于存储单词的英文拼写 char interpretation[50 阅读全文
posted @ 2021-11-23 08:58 东北最后深情 阅读(221) 评论(0) 推荐(0)
摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> #define INITSIZE 100 //定义结构体类型,用于表示单词类型 typedef struct word { char spell[100];//定义spell成员,用于存储 阅读全文
posted @ 2021-11-22 23:38 东北最后深情 阅读(195) 评论(0) 推荐(0)
摘要:#include<stdio.h>//子函数声明void Initiate(SqList &L);void Load(SqList &L) ;void Print(SqList L) ;//定义结构体类型,用于表示单词类型typedef struct word{ char spell[100]; / 阅读全文
posted @ 2021-11-15 11:19 东北最后深情 阅读(55) 评论(0) 推荐(0)
摘要:@SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code"> private void initComponents() { bobo = new javax.swing. 阅读全文
posted @ 2021-11-07 11:14 东北最后深情 阅读(40) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <stdlib.h> int main(void) { FILE *fp; char wordspess[50]; char translate[50]; /* 定义文件指针*/ if( ( fp = fopen("f1.txt", "w") 阅读全文
posted @ 2021-11-01 11:49 东北最后深情 阅读(31) 评论(0) 推荐(0)