[Linux]实验二蹭一下大数据的实验平台,感谢yjj贡献帐号以真实姓名的拼音缩写为用户名,创
原创
2022-11-25 19:39:38
121阅读
1.实验目的(1)理解HDFS在Hadoop体系结构中的角色;(2)熟练使用HDFS操作常用的Shell命令;(3)熟悉HDFS操作常用的Java API。2. 实验平台(1)操作系统:Linux;(2)Hadoop版本:2.7.4 ;(3)JDK版本1.8;(4)Java IDE:eclipse 。3. 实验步骤(一)编程实现以下功能,并利用Hadoop提供的Shell命令完成相同任
转载
2023-10-17 12:35:59
298阅读
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
125阅读
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
121阅读
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
100阅读
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
129阅读
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
109阅读
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
91阅读
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
118阅读
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
364阅读
2评论
| # 实验2:Open vSwitch虚拟交换机实践 | | | | ## 一、实验目的 | | | | 1. 能够对Open vSwitch进行基本操作; | | 2. 能够通过命令行终端使用OVS命令操作Open vSwitch交换机,管理流表; | | 3. 能够通过Mininet的Pyth ...
转载
2021-09-13 00:11:00
47阅读
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
99阅读
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
100阅读
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
107阅读
2评论
实验结论 实验任务5 某独立音乐人要举办一场免费小型liveshow。livehouse场地容量有限,最多容纳100位乐迷听众。现通过某平台开通线上预约登记。线上预约登记信息类Info如下: Info.hpp 1 #pragma once 2 #include<iostream> 3 #includ ...
转载
2021-10-29 09:14:00
146阅读
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
114阅读
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
274阅读
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
96阅读
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
91阅读
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
67阅读
2评论