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

📄 2_28.cpp

📁 10个比较经典的C++程序。初学者就先多学习学习别人吧。
💻 CPP
字号:
#include <iostream>
using namespace std;
int main()
{ 	long limits;
  	cout << "Enter a positive integer: ";  	cin >> limits;
  	cout << "Factorial numbers of "<<0<<" is " << 1<<endl;
  	cout << "Factorial numbers of "<<1<<" is " << 1<<endl;
  	long fac=1, i=1;
  	do								//使用do-while循环
	{  fac *= ++i;
    	  cout << "Factorial numbers of "<<i<<" is " << fac<<endl;
	} while (fac < limits);
  	return 0;
}

⌨️ 快捷键说明

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