蓝桥杯2014年第五届真题-拼接平方数 (C语言代码) 摘要:#include "stdafx.h"#include "math.h"int fun_len(int n){ int count=0; do { n /= 10; count++; } whil…… 题解列表 2018年10月23日 0 点赞 0 评论 745 浏览 评分:0.0
蓝桥杯2014年第五届真题-拼接平方数 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int f(int n) { int i = 1; while (n != 0) { …… 题解列表 2018年08月02日 0 点赞 0 评论 651 浏览 评分:0.0