实验二_51CTO博客
任务五 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
108阅读
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
358阅读
2评论
| # 实验2:Open vSwitch虚拟交换机实践 | | | | ## 一、实验目的 | | | | 1. 能够对Open vSwitch进行基本操作; | | 2. 能够通过命令行终端使用OVS命令操作Open vSwitch交换机,管理流表; | | 3. 能够通过Mininet的Pyth ...
转载 2021-09-13 00:11:00
44阅读
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
82阅读
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
99阅读
2评论
实验结论 实验任务5 某独立音乐人要举办一场免费小型liveshow。livehouse场地容量有限,最多容纳100位乐迷听众。现通过某平台开通线上预约登记。线上预约登记信息类Info如下: Info.hpp 1 #pragma once 2 #include<iostream> 3 #includ ...
转载 2021-10-29 09:14:00
128阅读
2评论
#ifndef Info_HPP #define Info_HPP #include <iostream> #include <string> using namespace std; class Info { private: string nickname,contact,city; int n ...
转载 2021-11-02 02:26:00
94阅读
2评论
 一#include<stdio.h> #include<stdlib.h> int main() { int mm,dd,yyyy; printf("Enter a date (mm/dd/yyyy):"); scanf("%d/%d/%d",&mm,&dd,&yyyy); printf("You enter the date %d%.
转载 2021-01-24 21:21:29
255阅读
2评论
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
90阅读
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
84阅读
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
83阅读
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
143阅读
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
47阅读
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
110阅读
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
112阅读
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
84阅读
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
120阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5