#include <stdio.h> #define NUMBER 100 int push(int* a, int top, int data) { a[++top] = data; return top; } int pop(int* a, int top) { if (top == -1) { ...
分类:
编程语言 时间:
2021-03-29 12:23:07
阅读次数:
0
#include <stdio.h> int main(){ int a = 100; char str[20] = "hello world!"; char *zza = "hello world!"; printf("%#X,%#X,%#X\n", *zza, &zza,zza); printf ...
分类:
编程语言 时间:
2021-03-29 12:14:44
阅读次数:
0
Problem A - Determinant 按题意来进行直接计算 时间复杂度:\(\mathcal{O}(1)\) int main() { ios_base::sync_with_stdio(false), cin.tie(0); int a, b, c, d; cin >> a >> b > ...
分类:
其他好文 时间:
2021-03-29 11:52:31
阅读次数:
0
1、创建Native类库 新建项目->其他语言->Visual C++->Win32控制台应用程序->DLL 添加头文件 添加源文件 选择生成路径生成dll 2、CLR类库封装Native类库 新建项目->其他语言->Visual C++->CLR->类库; 添加Native类库的lib和pdb 添 ...
分类:
编程语言 时间:
2021-03-26 15:26:07
阅读次数:
0
实验任务1 #include <stdio.h> int main() { printf(" 0 \n"); printf("<n>\n"); printf("I I\n"); printf("\n"); printf(" 0 \n"); printf("<n>\n"); printf("I I\n ...
分类:
编程语言 时间:
2021-03-18 14:31:02
阅读次数:
0
Building the projects in this solution one at a time. To enable parallel build, please add the "/m" switch.Build started 2021/3/17 0:22:07.Project "D: ...
分类:
编程语言 时间:
2021-03-17 15:05:07
阅读次数:
0
++ 在前面叫做前自增(例如 ++a)。前自增先进行自增运算,再进行其他操作。 ++ 在后面叫做后自增(例如 a++)。后自增先进行其他操作,再进行自增运算。 自减(--)也一样,有前自减和后自减之分。 1 #include <stdio.h> 2 int main() 3 { 4 int a = ...
分类:
编程语言 时间:
2021-03-17 14:48:45
阅读次数:
0
C++ 关于 freopen 函数 名 称:freopen 所 属:stdio.h 功 能:用于重定向输入输出流。该函数可以在不改变代码原貌的情况下改变输入输出环境,但使用时应当保证流是可靠的。 实例 #include <bits/stdc++.h> using namespace std; int ...
分类:
编程语言 时间:
2021-03-17 14:47:39
阅读次数:
0
//打印一个字符小人 #include <stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); printf(" o \n"); printf("<H>\n"); printf("I I\n"); retur ...
分类:
编程语言 时间:
2021-03-17 14:26:23
阅读次数:
0
#include<stdio.h> #include<stdlib.h> typedef char ElemType; //结点定义 typedef struct node{ ElemType data; struct node* lchild,*rchild; }BiTNode,*BiTree; ...
分类:
其他好文 时间:
2021-03-17 14:03:43
阅读次数:
0