3-2 输入一个8位二进制数,将其转换为十进制数输出。
1 #include <iostream> 2 using namespace std; 3 double power(double x,int n); //函数的声明,double类型防止超出整型 4 int main() 5 { 6 int number=0; 7 for(int i=7;i>=0;i--) //进行八次循环,输入一个8位二进制数 8 { 9 char ch; // int 输入的不是字符串,或字符。而是整数, 所以用char型 10 cin>>ch; 11 if(ch=='1') //如果是1的话就进行计算,否则不用计算 12 { 13 number+=static_cast<int>(power(2,i)); 14 } 15 } 16 cout<<number<<endl; 17 } 18 double power(double x,int n) //函数的定义 19 { 20 double a=1.0; 21 while(n--) 22 { 23 a*=x; 24 } 25 return a; 26 }
输出Π的值
#include <iostream> #include <cmath> using namespace std; double fab(double x) { double sqr=x*x; double e=x; double r=0; int i=1; while(e/i>1e-15) { double f=e/i; r=(i%4==1)?r+f:r-f; e=e*sqr; i+=2; } return r; } int main() { double pai; pai=16.0*fab(1.0/5)-4.0*fab(1.0/239); cout<<pai; }
标签:ch,int,double,C++,include,课本,fab,例题 From: https://www.cnblogs.com/Lyh3012648079/p/17315348.html