uf封装函数【自己做函数】
// 比如函数mei_a //字符串尾部 + aa
// 比如函数mei_b //字符串尾部 + n个空格
#include <string.h>
//------------------------------------------------------
void mei_a(char *s) //字符串尾部 + aa
{
strcat(s,"aa");
return;
}
//------------------------------------------------------
void mei_a(int *n,char *s) //字符串尾部 + n个空格
{
int i;
for (i=-1;i<n-1;)
{
i++;
strcat(s," ");
}
return;
}
//------------------------------------------------------
//-------------------- 使用方法如下 --------------------
char str1[33]="M123";
mei_a(str1); //使用封装函数//字符串尾部 + aa
uc1601(str1,1); //输出 M123aa
//-------------------- 使用方法如下 --------------------
int nn;
char str2[33]="M123";
mei_b(2,str2); //使用封装函数//字符串尾部 + n个空格
//str2 变成了 "M123 "
_____________________________________________________________________________ _
中磊UG二次开发教程 梅雷著 qq1821117007
学UG就上UG网 http://www.9sug.com/ |