自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 收藏
  • 关注

原创 p4:make run

针对该问题,极有可能是json文件语法不规范导致的,本人的问题出在忘删去逗号,如错误。未把文件夹放入到“P4/tutorials/exercises”文件夹下。

2023-02-15 10:16:47 247

翻译 Burstradar_receive.py

【代码】Burstradar_receive.py。

2022-09-23 19:57:48 118

翻译 Burstradar.p4个人注释

P4代码记录

2022-09-23 10:02:15 258

原创 P4编程环境搭建(Ubuntu)

P4学习

2022-06-15 21:37:20 498

原创 Linux_“浮点数问题“

当程序编译完成且无误,但运行时出现“浮点数例外”,应检查程序中是否会出现a/0或a%0的语句,因为分母为0不合理。

2019-04-22 22:32:00 382

原创 取数位

#include<stdio.h>#include<stdlib.h>#include<math.h>int len(int x){ if (x<10) return 1; return len(x/10) + 1;}int f(int x, int k){ if (len(x) - k == 0) return x % 10; r...

2019-03-23 11:30:58 118

原创 金字塔

#include<stdio.h>#include<stdlib.h>int main(void){ int number[][13] = { {0,0,0,0,0,0,7,0,0,0,0,0,0}, {0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0 }, {0, 0, 0, 0, 7, 0, 8, 0, 8, 0, 0, 0...

2019-03-23 10:45:41 107

原创 new运算符

通常new负责在堆中找到一个足以满足需求的内存块。如果new运算符找不到请求的内存量,C++会让new返回空指针(最初10年中),但现在会引发异常std::bad_alloc。定位new运算符(使用时要包含头文件&lt;new&gt;),能让指定需要使用的位置。当定位new运算符指定的内存是在静态内存中时,不可用delete释放。delete:用于这样的指针,指向常规new运算符分配的内存...

2019-03-17 20:43:06 552

原创 标题:等差素数列 2,3,5,7,11,13,....是素数序列。 类似:7,37,67,97,127,157 这样完全由素数组成的等差数列,叫等差素数数列。 上边的数列公差为30,长度为6。 2

#include&lt;stdio.h&gt;#include&lt;stdlib.h&gt;#define MAX 10000int main(void){ int numbers[MAX]; int flag = 0; for (int i = 0; i &lt; MAX; i++) numbers[i] = 0; for (int i = 2; i &lt; MAX;...

2019-03-15 21:36:20 2184 1

原创 shuzu

#include&lt;iostream&gt;int countRange(int numbers[], int length, int start, int end){ if (numbers==nullptr) return 0; int count = 0; for (int i = 0; i &lt; length; i++) { if (numbers[i] &l...

2019-03-12 21:32:43 363

原创 学习笔记1

C 头文件&lt;stdlib.h&gt;、C++头文件(cstdlib)rand()会返回一个范围在0到RAND_MAX(32767)之间的伪随机数(整数)。

2019-03-09 21:38:09 181

转载 C++ 简单文件输入输出代码记录

#include&lt;iostream&gt;#include&lt;fstream&gt;int main(){ using namespace std; char automobile[50]; int year; double a_price; double d_price; ofstream outFile; outFile.open("c.txt"); cou...

2019-03-09 21:37:54 651

原创 从未到头打印链表

#include&lt;iostream&gt;#include&lt;stack&gt;typedef struct ListNode{ int value; struct ListNode *next; ListNode(int v) :value(v), next(NULL) {}};void PrintListReverseingly(ListNode *head){...

2019-03-09 21:36:47 217

原创 母牛的故事

#include&lt;stdio.h&gt;int main(){ int a[54],a; int b[54]={1,2,3,0,0,0}; int count=0;//计数 for(i=3;i&lt;54;i++) b[i]=b[i-1]+b[i-3]; while(scanf("%d",&amp;a)&amp;&amp;a!=0&amp...

2018-11-21 20:35:57 1125

原创 C++ fixed,pessios(),isopen(),eof函数,fail函数等学习笔记

fixed:用一般的方式输出浮点数,而不是科学计数法;precision(val) 设置val为新的浮点数精度值, 并返回原值;(即小数点后保留多少个0)C++新内容:eof():判断是否到达文件末尾(即文件结束符“EOF”),若到了,eof函数值为非零值(表示真),否则,则为0(表示假)。老方法是good();fail():用来判断一个流是否“坏”掉了。如果failbit、badbi...

2018-11-03 16:34:22 1902

原创 The C Primer Plus 第七章答案

7.2#include&lt;stdio.h&gt;#include&lt;string.h&gt;int main(void){ int i=0; int s; char ch; while((ch=getchar())!='#') { putchar(ch); printf("%d ",ch); ...

2018-11-01 19:37:36 313

原创 四叶玫瑰花数

#include<stdio.h>#define N 9999int get_count(int result[], int n){ if(result==nullptr) return 0; int a, b, c, d; int sum; int i, j; int count = i = 0; for (j = 1000; j <...

2018-09-15 18:49:13 2946

原创 The C Primer Plus 第十章答案

 10.13.2#include&lt;stdio.h&gt;#include&lt;stdlib.h&gt;void copy_arr(double target1[], double s[], int);void copy_ptr(double target2[], double s[], int);int main(void){ double source[5] = {...

2018-09-04 17:52:06 442

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除