解题思路:
注意事项:
参考代码:
#include <deque>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <iterator>
#include <iomanip>
#include <numeric>
#include <sstream>
#include <string>
#include <cmath>
#include <string.h>
using namespace std;
int main()
{
int n;
cin>>n;
cout<<n<<"=";
for(int i=2;i<n;i++)
{
if(n%i==0)
{
cout<<i<<"*";
n=n/i;
i=1;
}
}
cout<<n<<endl;
return 0;
}
0.0分
0 人评分
输出九九乘法表 (C语言代码)浏览:582 |
矩阵转置 (C语言代码)浏览:1565 |
【回文数(二)】 (C++代码)浏览:932 |
简单的a+b (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:781 |
printf基础练习2 (C语言代码)浏览:826 |
WU-输出九九乘法表 (C++代码)浏览:1853 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:539 |
母牛的故事 (C语言代码)浏览:739 |
1011题解浏览:819 |