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

跟着《C++primer》学习C++

时间:2017-02-14 15:54:40      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:and   bsp   1.3   3.0   task   rod   margin   height   include   

task1.3

编写程序,在标准输出上打印“hello world!”:

#include <iostream>

 

int main()

{

    std::cout << "Hello, World!\n";

    return 0;

}

 

task 1.4

编写程序,实现两个数的乘积:

 

#include <iostream>

 

int main()

int i,j;

    std::cin>>i;

    std::cin>>j;

 

    std::cout << "the product of "<< i<<" and "<<j <<"is "<<i*j<<std::endl;

    

    return 0;

}

 

 

跟着《C++primer》学习C++

标签:and   bsp   1.3   3.0   task   rod   margin   height   include   

原文地址:http://www.cnblogs.com/wmy1995-nuaa/p/6397333.html

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