#include<stdlib.h> #include<stdio.h> int main(void) { int n,i; int *p; printf("请输入序列个数:"); scanf("%d",&n); p = (int*) malloc(sizeof(int)*n);//开辟动态内存区, ...
分类:
编程语言 时间:
2021-01-20 12:06:01
阅读次数:
0
C++通过函数重载或模板实现编译期多态(静态绑定),通过虚函数实现运行时多态(动态绑定)。 函数重载 #include <stdio.h> int add(int a, int b) { return a + b; } int add(double a, double b) { return a + ...
分类:
编程语言 时间:
2021-01-19 12:08:08
阅读次数:
0
&: 在C语言中有两种意思,一种是取地址符,是单目运算符;另一种是位运算符,表示“按位与”,是双目运算符。 1.用于指针赋值 #include<stdio.h> int main() { int a = 2; int*b;//定义一个整形指针 b = &a;//给指针赋值,使指针指向a的地址 pri ...
分类:
编程语言 时间:
2021-01-19 11:59:40
阅读次数:
0
#include<stdio.h> int main() { int n, m; while (scanf("%d%d", &n, &m) ==2) //(scanf("%d%d",&n,&m)!=EOF); { printf("m+n=%d\n", m + n); } return 0; ...
分类:
编程语言 时间:
2021-01-18 11:23:41
阅读次数:
0
使用前记得复制要发送的内容哦 1 #include<stdio.h> 2 #include<Windows.h> 3 4 int main(){ 5 int n; 6 char name[100]; 7 printf("请输入你要轰炸的对象:\n"); 8 scanf("%s",name); 9 p ...
分类:
编程语言 时间:
2021-01-15 12:11:40
阅读次数:
0
源码及汇编码 func.c源码 #include <stdio.h> int func(int a, int b) { a = 100; b = 200; printf("Hello%d\n", a); return 0; } int main(int argc, char *argv[]) { f ...
分类:
系统相关 时间:
2021-01-15 12:10:52
阅读次数:
0
#include<bits/stdc++.h> using namespace std; #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 #define rush! ios::sync_with_stdio(false);cin.tie(0); c ...
分类:
其他好文 时间:
2021-01-13 11:33:41
阅读次数:
0
nvGRAPH三角形计数示例 #include “ stdlib.h” #include“ inttypes.h” #include“ stdio.h” #include“ nvgraph.h” #define check( a )\ {\ nvgraphStatus_t status =(a); ...
分类:
其他好文 时间:
2021-01-13 11:23:13
阅读次数:
0
键盘输入语句 1.介绍 在编程中,需要接收用户输入的数据,就可以使用键盘接收语句来获取 2.步骤 include <stdio.h> 使用scanf函数 使用适当的格式参数接收输入 3.案例演示 #include<stdio.h> void main(){ //使用字符数组接收名 char name ...
分类:
其他好文 时间:
2021-01-12 11:08:44
阅读次数:
0
#1.数据范围 代码如下: #include<stdio.h> #include<climits> #include<limits.h> //利用标准头文件<limts.h>来确定个类型数据的范围,但是浮点型的范围不能用这种方法表示出来 int main() { //signed types pri ...
分类:
其他好文 时间:
2021-01-12 10:58:20
阅读次数:
0