zoukankan      html  css  js  c++  java
  • beij~~~

    // testCommon.cpp : 定义控制台应用程序的入口点。
    //

    #include "stdafx.h"
    #include <iostream>
    using namespace std;

    //////////////////////////////////////////////////////////////////////////
    /*
    *0         nk
    *001     nkrosq
    *0010     nkrosqur
    *0011     nkrosqus
    *0012     nkrosqut
    */
    //////////////////////////////////////////////////////////////////////////

    #include "ClsB.h"

    void Trim(char* myArr[])
    {
        int iLenght=sizeof(myArr)/4; //求得数组的长度
        for (int i=0;i<iLenght;i++)
        {
            int j=0;
            while (myArr[i][j]!='.')
            {
                memset(myArr[i],4,0);
                myArr[i][j];
            }
        }
        
    }

    int _tmain(int argc, _TCHAR* argv[])
    {
        /*
        char *aa="12.43";
        int i=0;
        while (aa[i]!='\0')
        {
            i++;
        }
        cout<<"i="<<i<<endl;
        */
        //char* aa[3]={"ho.w","are","you"};
        char aa[2][3]={{'a','.','c'},{'1','.','2'}};
        char* sz=strstr(aa[0],".");
        size_t i=strlen(sz);
        //*sz=0;
        memset(sz,0,i);
        //char szDst[10]={0};
        ////
        //strncpy(szDst,aa[0],i);
        //aa[0]=szDst;
        cout<<*aa[0]<<endl;
        
        getchar();
        return 0;

    }

    // testCommon.cpp : 定义控制台应用程序的入口点。
    //

    #include "stdafx.h"
    #include <iostream>
    using namespace std;

    //////////////////////////////////////////////////////////////////////////
    /*
    *0         nk
    *001     nkrosq
    *0010     nkrosqur
    *0011     nkrosqus
    *0012     nkrosqut
    */
    //////////////////////////////////////////////////////////////////////////

    #include "ClsB.h"

    void Trim(char* myArr[])
    {
        int iLenght=sizeof(myArr)/4; //求得数组的长度
        for (int i=0;i<iLenght;i++)
        {
            int j=0;
            while (myArr[i][j]!='.')
            {
                memset(myArr[i],4,0);
                myArr[i][j];
            }
        }
        
    }

    int _tmain(int argc, _TCHAR* argv[])
    {
        /*
        char *aa="12.43";
        int i=0;
        while (aa[i]!='\0')
        {
            i++;
        }
        cout<<"i="<<i<<endl;
        */
        //char* aa[3]={"ho.w","are","you"};
        char aa[2][3]={{'a','.','c'},{'1','.','2'}};
        char* sz=strstr(aa[0],".");
        size_t i=strlen(sz);
        //*sz=0;
        //memset(sz,0,i);
        char szDst[3]={0};
        //
        strncpy(szDst,aa[0],i);
        //aa[0]=szDst;
        strcpy(aa[0],szDst);
        cout<<aa[0]<<endl;
        
        getchar();
        return 0;
    }

     

  • 相关阅读:
    递归算法几个实例---C/C++
    Linux进程管理
    Linux文件传输
    Linux--系统管理
    Git学习笔记
    如果该虚拟机未在使用,请按“获取所有权(T)”按钮获取它的所有权。否则,请按“取消(C)”按钮以防损坏
    二叉树的非递归层次遍历算法
    二叉树(代码)
    根据后序遍历和中序遍历创建二叉树(代码)
    二叉树性质
  • 原文地址:https://www.cnblogs.com/xianqingzh/p/1662280.html
Copyright © 2011-2022 走看看