cC++
文章平均质量分 72
yxswhy
这个作者很懒,什么都没留下…
展开
-
c中循环结构
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop *///8循环嵌套,实现99乘法表 /* // 8.2for循环三角形输出 int main(){for(int i = 1原创 2017-05-11 15:17:47 · 335 阅读 · 0 评论 -
cmd控制台程序如何停留
#include <stdlib.h>中含有system("pause")。在main函数中,return前添加注意pause不要写错,如果写错系统不会提示错误,但是没有停留的结果。#include "stdafx.h"int main(int argc, _TCHAR* argv[]){ printf("hello world!\n"); syste...原创 2018-09-26 10:27:46 · 2071 阅读 · 0 评论 -
C中struct类型以及指针链表
#include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */#define ElemType int//指针处理链表 :单链表 struct Node{ElemT原创 2017-05-22 21:51:20 · 533 阅读 · 0 评论 -
内存分配与释放
#include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop *///动态内存分配与释放 //1 全局变量分配在内存中的静态存储区 //2 非静态的局部变量分配在内存中动态存储区,栈原创 2017-05-22 10:53:23 · 581 阅读 · 0 评论 -
函数指针VS指针函数;数组指针VS指针数组
#include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop *///函数指针VS指针函数 //函数指针:指向函数的指针;函数指针不允许加加减减。 //指针原创 2017-05-16 19:21:01 · 298 阅读 · 0 评论 -
指针指向字符串,函数指针,多功能函数调用
#include #include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop *///3 函数指针/*//3.2 利用传递函数指针实现原创 2017-05-16 19:09:53 · 772 阅读 · 0 评论 -
C-pointer—array
#include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop *///2数组指针//多维指针调用 //2.2数组名作为函数参数原创 2017-05-16 19:09:15 · 575 阅读 · 0 评论 -
C指针(笔记)
#include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop *///定义指针变量int main(){int a = 10;int b = 20原创 2017-05-12 15:41:17 · 174 阅读 · 0 评论 -
C -array
#include #include //array //in array, subscript begain with zero. /* run this program using the console pauser or add your own getch, system("pause") or input loop *///对数组由小到大排序(maop原创 2017-05-11 15:51:35 · 238 阅读 · 0 评论 -
C二维数组与字符数组 笔记
#include #include #include using namespace std; //count endl/* run this program using the console pauser or add your own getch, system("pause") or input loop *///4.0 char -f原创 2017-05-12 14:06:01 · 337 阅读 · 0 评论 -
C类型与数值存储
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */void main(){char ch = 'A';//为ch分配一个字节空间,把字符A存在当中,寸的是65,为A对原创 2017-05-11 16:28:35 · 209 阅读 · 0 评论 -
c-选择
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop *///求每一年的天,月数bool isleap(int year){if(((year % 4==0)&&year%100原创 2017-05-11 16:15:58 · 275 阅读 · 0 评论 -
c-function
#include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop *///函数==功能模块//c语言是面向过程,就是对面向函数的功能,以调动函数为主。//形参变量原创 2017-05-11 15:49:19 · 1287 阅读 · 0 评论 -
vs2010+opencv3.4.1 win10新建工程配置
只安装vs2010时,写了一个helloworld的控制台应用程序,但是就是报错fatal error LNK1104: 无法打开文件“opencv_ml2410d.lib无法打开opencv相关的东西。很奇怪,我并没有用到opencv,然后就调用了,查看了教程,但是问题没有解决,有让换路径的,改连接器的,但是根本问题是vs要关联opencv才能正常运行,猜测。后来,我就按照了opencv最新...原创 2018-09-26 10:36:00 · 3039 阅读 · 3 评论