zoukankan      html  css  js  c++  java
  • memcpy 与memset的使用方法

    1.memcpy使用注意:将数组a复制k个元素到数组b---memcpy(b,a,sizeof(int/double/char)*k)   其头文件为string.h

    2.memset用法:

    #include<stdio.h>

    #include<stdlib.h>

    #include<string.h>//memset的头文件 

    #define MAXN 1000+10

    int a[MAXN];

    int main()

    {

    int i,j,n,k,first=1;

    memset(a,0,sizeof(a));//将数组a全部置0 

    scanf("%d%d",&n,&k);

    for(i=1;i<=k;i++)

    for(j=1;j<=n;j++)

    if(j%i==0) a[j]=!a[j];//巧妙的取非运算 

    for(i=1;i<=n;i++)

    if(a[i]){if(first)first=0;else printf(" ");printf("%d",i);}//避免输出多余空格设定first 

    printf("\n");

    system("pause");

    return 0;

    }

                                                                                                          

  • 相关阅读:
    bzoj1257
    bzoj1833
    bzoj3505
    bzoj2226
    bzoj1263
    bzoj2429
    bzoj1854
    bzoj3555
    bzoj1877
    放两个模版
  • 原文地址:https://www.cnblogs.com/yuzhaoxin/p/2196635.html
Copyright © 2011-2022 走看看