task5: #include<iostream> #include<vector> #include<string> #include"info.hpp" using namespace std; int main() { int t = 0, i = 0; char choice; cout < ...
转载 2021-10-28 09:02:00
86阅读
2评论
#任务5 info.hpp 1 #ifndef INFO_HPP 2 #define INFO_HPP 3 4 #include<iostream> 5 #include<string> 6 using namespace std; 7 8 class info 9 { 10 public: 11 ...
转载 2021-10-28 19:17:00
77阅读
2评论
五 #include <iostream> #include <string> using namespace std; class Info { public: Info (string nina, string con, string ci, int num = 0): nickname(nin ...
转载 2021-10-31 11:56:00
58阅读
2评论
info.hpp #include <iostream> #include <iomanip> #include <string> using namespace std; class Info { private: string nickname,contact,city; int n; publ ...
转载 2021-10-31 10:25:00
75阅读
2评论
info.hpp #include<iostream> #include<string> #include<vector> using namespace std; class info{ public: info(string nickname0,string contact0,string ci ...
转载 2021-11-02 23:38:00
140阅读
2评论
恢复内容开始 任务五 lnfo.hpp #pragma once#include<iostream>#include<string>using namespace std;class lnfo { public: void in(string a,string b,string c,int d){ ...
转载 2021-11-02 23:10:00
40阅读
2评论
#include"music.hpp" #include<iostream> #include<vector> #include<string> int main() { using namespace std; const int capacity = 100; int n=0; int num; ...
转载 2021-11-02 19:11:00
43阅读
2评论
task5 Info.hpp 1 #ifndef INFO_HPP 2 #define INFO_HPP 3 #include<iostream> 4 #include<string> 5 using namespace std; 6 7 class Info{ 8 public: 9 Info(s ...
转载 2021-10-28 15:36:00
92阅读
2评论
task5.hpp #ifndef INFO_HPP #define INFO_HPP #include <iostream> #include <string> #include <iomanip> using namespace std; class Info { public: Info(st ...
转载 2021-10-30 20:35:00
104阅读
2评论
#include<string> #include<iostream> using namespace std; class info { public: info(string nickname,string contact,string city,int n); info(); void pri ...
转载 2021-10-31 15:36:00
69阅读
2评论
info.hpp: #include<iostream> #include<string> using namespace std; class info { public: info(string name, string con, string cs, int m) :nickname(name ...
转载 2021-10-31 19:40:00
112阅读
2评论
task 5.1 info.hpp 1 #include<string> 2 #include<iostream> 3 using namespace std; 4 class info{ 5 6 private: 7 string nickname,city,contact; 8 int n; 9 ...
转载 2021-11-02 20:00:00
56阅读
2评论
info.hpp 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 class Info{ 5 6 public: 7 Info(string name,string phone,string place,string ...
转载 2021-11-02 17:57:00
83阅读
2评论
任务五 info.hpp #ifndef INFO_hpp #define INFO_hpp #include <string> #include <iostream> #include<limits> using namespace std; class Info { public: Info() ...
转载 2021-11-03 13:01:00
100阅读
2评论
第一题 1.编写一个程序,以月日年(mm/dd/yyyy)的格式接受用户输入的日期信息,并以年月日(即 yyyymmdd)的格式显示出来#include<stdio.h> int main() { int mm,dd,yyyy; printf("Enter a date(mm/dd/yyyy):"); scanf("%d/%d/%d",&mm,&dd,&yyy
转载 2021-02-11 10:56:36
310阅读
2评论
| # 实验2:Open vSwitch虚拟交换机实践 | | | | ## 一、实验目的 | | | | 1. 能够对Open vSwitch进行基本操作; | | 2. 能够通过命令行终端使用OVS命令操作Open vSwitch交换机,管理流表; | | 3. 能够通过Mininet的Pyth ...
转载 2021-09-13 00:11:00
41阅读
2评论
#ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<string> #include<vector> using namespace std; class info{ public: info(string a,string b ...
转载 2021-10-27 15:46:00
62阅读
2评论
实验结论: 实验任务5: info.hpp #include <iostream> #include <vector> #include <string> using namespace std; class Info{ private: string nickname; string contac ...
转载 2021-10-28 21:04:00
92阅读
2评论
//info.hpp #ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<string> using namespace std; class Info{ public: Info(string a,string b,strin ...
转载 2021-10-29 00:31:00
85阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5