博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Absolute C++ Chapter 1 Self-Test Exercise(2)
阅读量:5302 次
发布时间:2019-06-14

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

4.(1)3*x (2)3*x+y (3) (x+y)/7 (4)(3*x+y)/(z+2) 

5. bcbc

6. 0

7.

#include 
using namespace std;int main( ){  int num1,num2;  cout<<"Enter the divendend:";  cin>>num1  cout<<"Enter the divisor:";  cin>>num2;  quotient=num1/num2;  remainder=num1%num2;  cout<
<<"divided by"<
<<"is"<
<<"\n";  cout<<"with a remiander of"<
<<"\n";   return 0;}

 

8.a.52.0

b. the program only transfer 20 celsius degree into fahrenheit, the programmer wanted to input the degree that needs to be transferred. Also the 9/5 gives back a whole number instead the exact result of 9/5, so need to be rectified as 5.0/9.

c

double c;cout<<"input the degree Celsius.";cin<

 

 

  

 

转载于:https://www.cnblogs.com/hanterry/archive/2012/05/05/2484717.html

你可能感兴趣的文章
C# PDF转Image图片
查看>>
在项目中使用Google Closure Compiler
查看>>
php-fpm打开错误日志的配置
查看>>
k近邻算法
查看>>
ThinkPHP5实现定时任务
查看>>
uva1599 Ideal path(已AC)
查看>>
搭建Eclipse开发环境
查看>>
P1077 摆花
查看>>
关于SQL SERVER建立索引需要注意的问题(引用)
查看>>
Hadoop HDFS源码分析 读取命名空间镜像和编辑日志数据
查看>>
mruby看起来挺不错
查看>>
jQuery操作编辑页面,span与input标签之间的随时转换
查看>>
面向amd64的XXX与与项目的目标平台“x86”不兼容
查看>>
5句mysql语句
查看>>
const成员函数
查看>>
hdu2429Ping pong
查看>>
***-低调使用
查看>>
Python---xml
查看>>
网络协议
查看>>
【poj2367】Genealogical tree
查看>>