编程题必须做到判断清晰,程序健壮
样例输入: 100
样例输出: 100 = 2 * 2 * 5 * 5
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
/**程序窗口*/
void winos();
//判断输入是否合法(范围 非数字判断 )
void User_Input(int* a);int main()
{
winos(); //程序窗口int n, i; // 接收用户输入 ,while (1){
//输入判断,判断是不是数字,判断输入的数字是不是不是题目要求的printf("请输入一个数字\n");while