[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阅读
任务五 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评论
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
90阅读
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
148阅读
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
51阅读
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
64阅读
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
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评论
  • 1
  • 2
  • 3
  • 4
  • 5