switch语句的运用
switch语句的运用至关重要。现在举一个简单例子进行说明。计算:s=1+1/2+1/3...1/n的值。
操作方法
- 01
进入VC++,新建C++文件。
- 02
编写程序: #include <stdio.h> void main() { int i,n; double s=0.0; printf("请输入变量n的值: "); scanf("%d",&n); i=1; while(i<=n) { s+=1.0/i; i++; } printf("s=%f\n",s); }
- 03
运行结果检验:
赞 (0)