码迷,mamicode.com
首页 > 编程语言 > 详细

C++ Primer Plus第六版编程练习---第3章 处理数据(未完待续)

时间:2018-04-27 02:16:32      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:ons   out   argc   cto   编程   actor   main   c++   str   

1.

#include <iostream>

const int CONVER_FACTOR = 12;

int main(int argc, char* argv[])
{
int height = 0;
std::cout << "Pleas enter your height with inch_ ";
std::cin >> height;
if(0 > height)
{
std::cout << "Pleas enter your height with inch_ ";
std::cin >> height;
}
std::cout << "You are " << height/CONVER_FACTOR << " foots and " << height%CONVER_FACTOR << " inches." << std::endl;
return 0;

}

 

C++ Primer Plus第六版编程练习---第3章 处理数据(未完待续)

标签:ons   out   argc   cto   编程   actor   main   c++   str   

原文地址:https://www.cnblogs.com/f00345709/p/8955760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!