在C++语言环境下开发简单的绘图程序,分别实现画点,线,图形等功能. 10
要求:“画点”、“线”、“图形”分别写在三个自定义函数中,主函数使用菜单选择程序由switch语句分别调用自定义函数。(一定要用C++,复制粘贴别人的C就不要来了)...
要求: “画点” 、 “线” 、 “图形”分别写在三个自定义函数中,主函数使用菜单选择程序由
switch语句分别调用自定义函数。(一定要用C++,复制粘贴别人的C就不要来了) 展开
switch语句分别调用自定义函数。(一定要用C++,复制粘贴别人的C就不要来了) 展开
展开全部
#include "stdio.h"
#include "stdlib.h"
int getCharCount(char *sz,char ch,int len)
{
int i = 0;
int icount =0;
for(i=0;i<len,i++)
{
if(*sz == ch)
icount = icount +1;
sz++;
}
return icount;
}
void main()
{
char sz[10]=;
int iCnt=0;
iCnt = getCharCount(sz,'a',10);
printf("a 的个数为 %d",iCnt);
getche();
}
另外,团IDC网上有许多产品团购,便宜有口碑
#include "stdlib.h"
int getCharCount(char *sz,char ch,int len)
{
int i = 0;
int icount =0;
for(i=0;i<len,i++)
{
if(*sz == ch)
icount = icount +1;
sz++;
}
return icount;
}
void main()
{
char sz[10]=;
int iCnt=0;
iCnt = getCharCount(sz,'a',10);
printf("a 的个数为 %d",iCnt);
getche();
}
另外,团IDC网上有许多产品团购,便宜有口碑
追问
这是C++???
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询