ICode9

精准搜索请尝试: 精确搜索
  • 第五次C实验2022-06-07 01:03:43

    #include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N]= {{"一九八四","乔治.奥威尔"}, {"美丽新世界","赫胥黎"}, {&quo

  • 实验五2022-06-07 01:02:46

    #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四","乔治.奥威尔"}, {"美丽新世界","

  • 实验五2022-06-07 01:01:13

    #include <stdio.h> #include <stdlib.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎&qu

  • 实验五2022-06-07 01:00:42

    #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"}, {"

  • 实验五2022-06-07 00:34:11

    task1-1 #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"}, {"昨日的世界", "斯蒂芬.茨威格&quo

  • 实验7 类和模块2022-06-07 00:31:22

    class User: def __init__(self, name='guest', password=111111, status=1): self._name = name self._password = password self._status = status def info(self): print('账户信息:') if self._status

  • 实验5 结构体和文件2022-06-07 00:01:43

    一、实验结论 task1 task1-1 #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"}, {"昨日的世界&q

  • 实验7 类和模块2022-06-06 23:03:30

    7.5.1 ''' 一个类User 数据: 用户名、密码、帐号状态 操作:显示账户信息、修改密码 ''' class User: '''判断密码正误''' def __init__(self,name='guest',password='111111',status='1'): self._n

  • 实验52022-06-06 23:03:22

    task1_1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 5 4 #define M 80 5 6 typedef struct 7 { 8 char name[M]; 9 char auther[M]; 10 /* data */ 11 }Book; 12 13 int main() 14 { 15 Book x[N] = {{"一九八四",

  • 实验五2022-06-06 23:01:43

    //1_1 #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"

  • 上机实验五2022-06-06 23:01:29

    task 1-1;#include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N]={{"一九八四","乔治·奥威尔"}, {"美丽新世界" ,"赫胥黎" },

  • 实验52022-06-06 22:34:20

    #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 } Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"}, {"昨日的世界", &quo

  • 实验五2022-06-06 22:33:33

    task1_1.c #include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; } Book; int main() { Book x[N]={ {"一九八四","乔治.奥威尔"}, {"美丽新世界","赫胥黎"}

  • 实验52022-06-06 22:31:56

    #include <stdio.h>#define N 5#define M 80typedef struct{char name[M];  // 书名char author[M]; // 作者}Book;int main(){Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"},

  • 实验5 结构体和文件2022-06-06 22:04:40

    TASK 1 因为数组本身就是地址。 //TASK1.1 #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = {{"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫

  • 实验72022-06-06 22:02:04

    class User: def __init__(self, name='guest', password=111111, status=1): self._name = name self._password = password self._status = status def info(self): print('账户信息:') if self._status

  • 实验五2022-06-06 22:00:35

    task1-1 1 #include <stdio.h> 2 #define N 5 3 #define M 80 4 typedef struct 5 { 6 char name[M]; 7 char author[M]; 8 }Book; 9 int main() 10 { 11 Book x[N] = { {"一九八四", "乔治.奥威尔"}, 12

  • 实验七2022-06-06 22:00:14

    class User: def __init__(self,name='guest',password=111111,status=1): self.name=name self.password=password self.status=status def info(self): print('账户信息:用户名,密码,账号状态') if self.status==1:

  • 实验五2022-06-06 20:34:23

    task1_1: #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 } Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎&q

  • 实验7 类和模块2022-06-06 20:31:15

    task5 class User: def __init__(self,name='guest',password=111111,status=1): self.name=name self.password=password self.status=status def info(self): if self.status == 1: print(f'

  • 实验五2022-06-06 20:04:38

      // 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"}, {"昨

  • 实验52022-06-06 19:33:12

    task1.c #include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; } Book; int main() { Book x[N]={{"一九八四","乔治.奥威尔"}, {"美丽新世界","赫胥黎"},

  • 实验五2022-06-06 19:01:38

    1.实验任务1:文本文件数据格式化读写 task1_1.c #include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; //书名 char author[M]; //作者 } Book; int main() { Book x[N]={ { "一九八四", "乔治.奥威尔"},

  • 实验52022-06-06 18:35:00

    TASK1   #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎"}, {"昨日的世界", &qu

  • 实验五2022-06-06 17:02:57

    task-1.1 #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] = { {"一九八四", "乔治.奥威尔"}, {"美丽新世界", "赫胥黎&quo

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有