上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: 1.使用文件流写文本文件: #include <iostream> #include <string> #include <fstream> using namespace std; int main() { string name; int age; ofstream offile;//文件输出流 阅读全文
posted @ 2022-11-26 19:21 wshidaboss 阅读(289) 评论(0) 推荐(0) 编辑
摘要: Book.h: #pragma once #include <string> using namespace std; class Book { public: Book(const string& bookname, const string& isbn, double price); doubl 阅读全文
posted @ 2022-11-24 19:37 wshidaboss 阅读(69) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class test1 { public static void main(String[] args) { String[] words = new String[20]; System.out.println("请输入二十个单词: 阅读全文
posted @ 2022-11-22 14:47 wshidaboss 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Father.h: #pragma once #include <iostream> #include <string> using namespace std; class Father { public: Father(); Father(const string &name,int age); 阅读全文
posted @ 2022-11-20 20:58 wshidaboss 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Hero.h: #pragma once #include <iostream> #include <string> #include <vector> #include <sstream> using namespace std; typedef enum gender { Man, //男 Wo 阅读全文
posted @ 2022-11-20 09:55 wshidaboss 阅读(31) 评论(0) 推荐(0) 编辑
摘要: Toy.h: #pragma once #include <iostream> #include <windows.h> #define DISCOUNT 5 //折扣,打5折 using namespace std; class Toy { public: Toy(); //构造函数 Toy(st 阅读全文
posted @ 2022-11-17 17:17 wshidaboss 阅读(60) 评论(0) 推荐(0) 编辑
摘要: Boy.h: #pragma once #include <string> #include <vector> using namespace std; class Girl; class Boy { public: Boy(); Boy(int age,string name,int salary 阅读全文
posted @ 2022-11-13 20:08 wshidaboss 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1.可以用简单的数据类型作为参数: #include <iostream> #include <vector> using namespace std; int main() { vector<int> data; data.push_back(1); data.push_back(5); for 阅读全文
posted @ 2022-11-13 17:08 wshidaboss 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 编写C程序,实现链队列的下列功能: 1、 设计一个虚拟界面,让用户选择操作(根据提示输入数据) 2、 采用模块化编程思想,编写main函数和若干子函数(实现功能) 3、 队列的基本功能有:创建空队列、入队、出队、取队头元素等。 #include<stdio.h> #include<stdlib.h> 阅读全文
posted @ 2022-11-12 18:06 wshidaboss 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 编写C程序,实现单链表的下列功能: 1、 从键盘输入一组数据,创建单链表; 2、 输出单链表; 3、 插入元素,给出插入成功或失败的信息; 4、删除元素,给出删除成功或失败的信息。 #include<stdio.h> #include<stdlib.h> typedef struct LNode { 阅读全文
posted @ 2022-11-12 11:12 wshidaboss 阅读(231) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页