- 博客(18)
- 收藏
- 关注
原创 p4:make run
针对该问题,极有可能是json文件语法不规范导致的,本人的问题出在忘删去逗号,如错误。未把文件夹放入到“P4/tutorials/exercises”文件夹下。
2023-02-15 10:16:47 247
原创 取数位
#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运算符(使用时要包含头文件<new>),能让指定需要使用的位置。当定位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<stdio.h>#include<stdlib.h>#define MAX 10000int main(void){ int numbers[MAX]; int flag = 0; for (int i = 0; i < MAX; i++) numbers[i] = 0; for (int i = 2; i < MAX;...
2019-03-15 21:36:20 2184 1
原创 shuzu
#include<iostream>int countRange(int numbers[], int length, int start, int end){ if (numbers==nullptr) return 0; int count = 0; for (int i = 0; i < length; i++) { if (numbers[i] &l...
2019-03-12 21:32:43 363
原创 学习笔记1
C 头文件<stdlib.h>、C++头文件(cstdlib)rand()会返回一个范围在0到RAND_MAX(32767)之间的伪随机数(整数)。
2019-03-09 21:38:09 181
转载 C++ 简单文件输入输出代码记录
#include<iostream>#include<fstream>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<iostream>#include<stack>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<stdio.h>int main(){ int a[54],a; int b[54]={1,2,3,0,0,0}; int count=0;//计数 for(i=3;i<54;i++) b[i]=b[i-1]+b[i-3]; while(scanf("%d",&a)&&a!=0&...
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<stdio.h>#include<string.h>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<stdio.h>#include<stdlib.h>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关注的人