标签: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;
}
标签:and bsp 1.3 3.0 task rod margin height include
原文地址:http://www.cnblogs.com/wmy1995-nuaa/p/6397333.html