⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 04_04.cpp

📁 一些C++的课件和实验源代码
💻 CPP
字号:
// 04_04.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
using namespace std;

void reverse_and_print(int a[], int size) 
{
	for (int i = 0; i < size; i++)
		a[i] = 2 * i;

	int temp;
	for (int i = 0; i < size / 2; i++) {	
		temp = a[i];
		a[i] = a[size - 1 - i];
		a[size - 1 - i] = temp;   
	}
	
	for (int i = 0; i < size; i++)
		cout << a[i] << endl;
}

int main(int argc, char* argv[])
{
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -