testarray.cpp
来自「簡單的代碼,隻是為了下載別的東西」· C++ 代码 · 共 28 行
CPP
28 行
// testArray.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include "arraymax.h"
using namespace std;
int main()
{
arraymax arrmax;
arrmax.set_value();
arrmax.max_value();
arrmax.show_value();
return 0;
}
/*
int main(int argc, char* argv[])
{
return 0;
}
*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?