网站首页 站内搜索

搜索结果

查询Tags标签: cyl,共有 4条记录
  • R语言练习(自存)

    第一次#1.1.1 x <- seq(from=1,to=99,by=2) #1.1.2 x<-1:100 index = rep(c(TRUE, FALSE), 100) x<-x[index] x<-x[!is.na(x)] #1.1.3 x<-NULL num<-1 for(i in 1:50){ x[i]<-num num<-num+2 } # 1.2 y<-rep(1:5,10) # 1.3 z <- c(x,y…

    2021/12/9 23:18:07 人评论 次浏览
  • R语言练习(自存)

    第一次#1.1.1 x <- seq(from=1,to=99,by=2) #1.1.2 x<-1:100 index = rep(c(TRUE, FALSE), 100) x<-x[index] x<-x[!is.na(x)] #1.1.3 x<-NULL num<-1 for(i in 1:50){ x[i]<-num num<-num+2 } # 1.2 y<-rep(1:5,10) # 1.3 z <- c(x,y…

    2021/12/9 23:18:07 人评论 次浏览
  • C++面向对象总结——类的实践

    直接看题吧: 第一题 输入圆的半径和圆柱的高,依次输出圆周长、圆面积、圆柱体积(π取 3.14)。#include<iostream> using namespace std;class cylinder { public:cylinder() :PI(3.14){cout << "请输入半径" << endl;cin >> cyl_ra…

    2021/7/29 14:05:57 人评论 次浏览
  • C++面向对象总结——类的实践

    直接看题吧: 第一题 输入圆的半径和圆柱的高,依次输出圆周长、圆面积、圆柱体积(π取 3.14)。#include<iostream> using namespace std;class cylinder { public:cylinder() :PI(3.14){cout << "请输入半径" << endl;cin >> cyl_ra…

    2021/7/29 14:05:57 人评论 次浏览
扫一扫关注最新编程教程