ICode9

精准搜索请尝试: 精确搜索
  • C++ 实验3 类和对象2019-04-21 22:54:38

    1.小球移动 #include <iostream>#include "canvas.h"#include "Ball.h"int main() { Canvas canvas; Ball ball1(10,10); system("pause"); ball1.left(5); system("pause"); ball1.up(20); sy

  • 实验三2019-04-21 17:49:27

    Part 2 #include <iostream>#include "graph.h"using namespace std;int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls"); Graph graph2('$',7); graph

  • 实验三2019-04-21 16:53:21

    2.graph // 类graph的实现 #include "graph.h" #include <iostream>using namespace std;// 带参数的构造函数的实现 Graph::Graph(char ch, int n): symbol(ch), size(n) {}// 成员函数draw()的实现// 功能:绘制size行,显示字符为symbol的指定图形样式 void Graph::draw() { int

  • 实验三2019-04-21 14:52:06

    1.新建一个空项目,添加上述三个文件到项目中。 补足graph.h中类的成员函数draw()的实现,使得在main()中对类的测试能够实现以下效果: 主函数中测 试代码 代码如下: //定义一个graph的类 #ifndef GRAPH_H#define GRAPH_Hclass Graph{ public: Graph(char ch, int n);

  • 实验32019-04-21 13:38:45

    #include <iostream>#include "graph.h"using namespace std;int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls"); Graph graph2('$',7); graph2.draw();

  • 实验三:类的实现2019-04-20 17:52:35

    1.小球测试 2.画布 #ifndef GRAPH_H#define GRAPH_H// 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int size;};#endif graph.h #includ

  • c++第三次实验2019-04-20 15:01:54

    Part 1 画布小球试验 一、了解相关函数用法 1、system()       system("pause")就是从程序里调用"pause"命令;pause命令的功能:在命令行上输出"按任意键继续······",等待用户按一个键,然后返回。       system("color xx").第一个为背景色:黑色0  蓝色1  红色4  紫色5  灰色

  • 实验三2019-04-19 23:39:43

    一、分数类 #include<iostream>using namespace std;#include"Class.h"int main(){ Fraction a; Fraction b(3,4); Fraction e(5); int t1,b1,t2,b2; cout<<"Please enter the number:"<<endl; cout<<"number

  • 实验三 类和对象2019-04-19 18:45:04

    一、实验内容   1、graph类内容补充 代码如下: #ifndef GRAPH_H#define GRAPH_H// 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int size;};

  • fraction类的运算重载2019-04-11 14:47:37

    运算符重载举例 //fraction.h#ifndef FRACTION_H#define FRACTION_H#include <iostream>class Fraction{ friend std::ostream& operator<< (std::ostream& out, const Fraction& f); public: Fraction(long n=0, long d=1); virtual ~

  • 结对项目第一周2019-04-04 09:44:33

    结对项目——四则运算 阶段性总结 需求分析(第一周达成): 能够生成n道四则运算题,n可由使用者输入来控制 支持整数 支持分数 生成题目中含有括号 可以判断正误,如果错误会输出正确答案 统计正确率 扩展需求: 生成题目后存入文件 完成题目后从文件读入并进行判断 支持题目去重 支持繁

  • 改进版四则运算2019-03-28 16:39:43

    (1)Github地址:https://github.com/1281162169/newest-second-task (2)PSP表格: PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 60 30 · Estimate · 估计这个任务需要多少时间 60 30 Development 开发 20

  • LG3898 [湖南集训]大新闻2019-03-10 17:43:55

    题意 题目描述 **记者弄了个大新闻,这个新闻是一个在 [0,n) 内等概率随机选择的整数,记其为 x。为了尽可能消除这个大新闻对公众造成的不良印象,我们需要在 [0,n)内找到某一个整数 y,使得 x ⊕ y 达到最大值。这里 ⊕ 代表异或。 问题在于,**记者有可能对大新闻进行了加密。情报显示,大

  • Burpsuite爆破之随机6位数验证码2019-02-19 13:04:39

    Burpsuite爆破之随机6位数验证码-Random   0x01 找到Payload Options [Numbers] 设置number range 为 Random方式 注意:How many 只爆破多少个,不用全部爆破,这就是随机爆破的好处。     0x02 设置Number format Max integer digits 设置为6Min fraction digits 设置为0Max frac

  • CF A fraction2019-01-30 23:38:23

    A. Fraction Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction  is called proper iff its numerator is smaller than its denominator (a < b) and that the fraction is called irreducible if i

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有