可以使用循环或递归方法解决此问题。而且,我们已经看到了使用#define指令(宏扩展)的解决方案,但是如果不允许所有这三个方法怎么办?
一个简单的解决方案是在cout语句中将数字写100次。更好的解决方案是在C中使用setjump和longjump概念。
// CPP program to print one 100 times.
#include
#include
using namespace std;
jmp_buf buf;
int main()
{
int x = 1;
// Setup jump position using buf
setjmp(buf);
cout << "1"; // Prints 1
x++;
if (x <= 100)
// Jump to the point setup by setjmp
longjmp(buf, 1);
return 0;
}
输出 :
100 times 1.
同样也可以为C编写。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。