c++ 程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ 程序相关的知识,希望对你有一定的参考价值。
点滴积累,路虽远,行必至!
程序1,将2个结构域值相加,乘以2再加50
#include<iostream> using namespace std; int result(int, int); const int k = 2; struct point{ int x, y; }; int main() { int z(0), b(50); point a; cout << "请输入2个整数(以空格分割):"; cin >> a.x >> a.y; z = (a.x + a.y) * k; z = result(z, b); cout << "输出结果如下:" << endl; cout << "(" << a.x << "+" << a.y << ")" << "*" << k << "+" << b << "=" << z << endl; return 0; } int result(int a, int b) { int c(0); c = a + b; return c; }
end!
以上是关于c++ 程序的主要内容,如果未能解决你的问题,请参考以下文章
此 Canon SDK C++ 代码片段的等效 C# 代码是啥?
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情