如何不使用循环或递归或goto打印N次“ Hello”(其中N是用户输入)。
Input : N, that represent the number of times you want to print the statement.
Output : Statement for N times
首先,我们创建一个类。之后,我们需要通过在cout / print语句中编写要打印的语句来初始化类的构造函数。这里的基本思想是创建类的对象的次数很多,该类的构造函数被调用了很多次。
// CPP program to print a sentence N times
// without loop and recursion.
// Author : Rohan Prasad
#include
using namespace std;
class Print {
public:
Print()
{
cout << "Hello" << endl;
}
};
int main()
{
int N = 5;
Print a[N];
return 0;
}
输出:
Hello
Hello
Hello
Hello
Hello
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。