爱奇艺笔试题

简介: // aiqiyitest.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;int fun(int a,int b){ static int m =1,i=2; i+=...


// aiqiyitest.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>

using namespace std;


int fun(int a,int b)
{
	static int m =1,i=2;
	i+= m +1;
	m = i +a +b;
	return m;
}
int _tmain(int argc, _TCHAR* argv[])
{

	int k = 5,m = 2,p;
	p = fun(k,m);
	cout<<p<<",";
	p = fun(k,m);
	cout<<p<<endl;
	return 0;
}





// aiqiyitest.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>

using namespace std;
int i = 0;

 void fun()
 {
	 {

	 static int i = 1;
	 std::cout<<i++<<',';
	 }
	 std::cout<<i<<',';
 }

int _tmain(int argc, _TCHAR* argv[])
{
	fun();
	fun();
	return 0;
}





相关文章
|
机器学习/深度学习 算法 数据库
华科2018年笔试题大概
华科2018年笔试题大概
|
算法 Java
新鲜出炉,分享一道阿里的笔试题
Hello,大家好,我是鸭血粉丝~ 最近朋友出去面试某大厂,收到一题笔试题,阿粉看了下还是挺有意思的,跟大家分享一下。 首先我们先来看下题目的要求: 现在一个文件,包含大量的 sku 数据, 我们需要针对这些数据,需要完成三道题目。 这里就不完整介绍三道题目,今天就介绍前两道题目。
美团18春招编程笔试题赏析
1 字符串距离 题目: 给出两个相同长度的由字符 a 和 b 构成的字符串,定义它们的距离为对应位置不同的字符的数量。如串”aab”与串”aba”的距离为 2;串”ba”与串”aa”的距离为 1;串”baa”和串”baa”的距离为 0。
1072 0
|
SQL Java 关系型数据库
爱奇艺面试题
JMM,高并发高吞吐各自适应使用的GC方法,如何造成OOM,解决OOM 手动回收对象 栈中new的对象生存时间 聊聊集合hashmap,ArrayList,concurrenthashmap java锁的分类 java中队列,树数据结构的实现 并发的J...
1603 0
|
人工智能 SQL 算法