花落的新手写法(C语言代码)~ 摘要:解题思路:注意事项:会超时参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int pow(int n){ int i,sum=1; …… 题解列表 2017年12月18日 0 点赞 0 评论 869 浏览 评分:0.0
K-进制数 (C语言代码) 摘要:解题思路:注意事项:用递归给数字一位一位赋值参考代码:#include<stdio.h>int shul=0;void pd(int n,int k,int num){ int i,j,numz,ze…… 题解列表 2017年12月03日 1 点赞 0 评论 709 浏览 评分:0.0
K-进制数 (C语言描述,蓝桥杯) 摘要:#include <stdio.h> #include <math.h> int count(int ,int ); int main() { int N,K,max,count0=0,s…… 题解列表 2017年10月20日 6 点赞 4 评论 978 浏览 评分:0.0
K-进制数 (C++代码) 摘要:#include<cstdio> #include<iostream> using namespace std; char s[10]; int cnt=0, n , k ; void df…… 题解列表 2017年08月18日 5 点赞 0 评论 1100 浏览 评分:0.0