标签:c++
3.7
#include <iostream.h>
void main()
{
int a,b;
a=b=5;
if(a==1)
if(b==5)
{
a+=b;
cout<<a<<endl;
}
else
{
a-=b;
cout<<a<<endl;
}
cout<<a+b<<endl;
}
3.8
#include <iostream.h>
void main()
{
float d1,d2;
char op;
cout<<"input d1 op d2:";
cin>>d1>>op>>d2;
switch(op)
{
float temp;
case ‘+‘:temp=d1+d2;
cout<<d1<<op<<d2<<"="<<temp<<endl;
break;
case ‘-‘:temp=d1-d2;
cout<<d1<<op<<d2<<"="<<temp<<endl;
break;
case ‘*‘:temp=d1*d2;
cout<<d1<<op<<d2<<"="<<temp<<endl;
break;
case ‘/‘:temp=d1/d2;
cout<<d1<<op<<d2<<"="<<temp<<endl;
break;
default:cout<<"error! \n";
}
}
本文出自 “青春邓勇” 博客,请务必保留此出处http://dengyong.blog.51cto.com/8409869/1715416
标签:c++
原文地址:http://dengyong.blog.51cto.com/8409869/1715416