find.cpp
来自「这是一个在一个规则矩阵中快速查找某个数值的小程序。」· C++ 代码 · 共 15 行
CPP
15 行
// find.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include <stdio.h>
main()
{int i;
int sum=1;
for (i=1;i<101;i++)
sum=sum*i;
printf("%d",sum);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?