博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
程序小题目
阅读量:4949 次
发布时间:2019-06-11

本文共 1058 字,大约阅读时间需要 3 分钟。

1 #include 
2 #include
3 #include
4 #include
5 void main() 6 { 7 int i,j,k,count; 8 char s1[100],s2[100]; 9 printf("Please enter main string:");10 gets(s1);11 printf("enter sub string:");12 gets(s2);13 count=0;14 for(i=0;s1[i]!='\0';i++)15 {16 for(k=0,j=0;(s1[j]==s2[k])&&(s1[j]!='\0');j++,k++);17 if(s2[k]=='\0') 18 count++;19 }20 printf("\ncount=%d\n",count);21 }22 //--------------23 #include
24 using namespace std;25 double fun(double x,int n)26 {27 double m1=1,sum=1;28 for(int i=1;i<=n;i++)29 if(i%2==1)30 {31 for(int j=2*i;j>0;j--)32 m1*=x/j;33 sum+=-m1;34 }35 else36 { 37 for(int j=2*i;j>0;j--)38 m1*=x/j;39 sum+=m1;40 }41 return sum;42 }43 int main()44 {45 int x,n;46 cout<<"Please input x:"<
>x;48 cout<<"Please input n:"<
>n;50 cout<
<

转载于:https://www.cnblogs.com/herizai/archive/2013/06/04/3116386.html

你可能感兴趣的文章
Qt中图像的显示与基本操作
查看>>
详解软件工程之软件测试
查看>>
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>
struct {0}初始化
查看>>
c++ operator
查看>>
apache 添加 ssl_module
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
getQueryString
查看>>
Servlet文件上传和下载的复习
查看>>
JavaScript笔记——正则表达式
查看>>
iOS PushMebaby
查看>>
网页消息类
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
日常一些出现bug的问题
查看>>
同时启动多个tomcat服务器
查看>>