#include "stdafx.h"
#include <iostream>
using namespace std;
void print();
int main()
{
print();
return 0;
}
void print()
{
cout << "Hello World!" << endl;
}
c++ 子程序声明
最新推荐文章于 2024-10-01 14:31:15 发布
#include "stdafx.h"
#include <iostream>
using namespace std;
void print();
int main()
{
print();
return 0;
}
void print()
{
cout << "Hello World!" << endl;
}