内容转换: 不转换

巨大八爪鱼的个人主页

巨大八爪鱼


  • 14

    关注

  • 10

    粉丝

  • 45

    访客


等级:一派掌门 二十级

经验:85554点

金币:51719枚


性别:

生日:1997年4月14日

星座:白羊座

血型:O型


注册时间:2010-8-14 17:17

最后访问时间:2025-5-23 12:39

最后发帖时间:2025-5-22 21:36

个人简介:欢迎大家来到我的网站

帖子

点击/回复 标题 最后回复 发表时间/侃吧
443/0 这吧早在2010年底就创建了。。。 3-23 3-23
371/4 Dev-C++竟然能直接用变量定义数组的大小,无需malloc或new!
#include <iostream>
using namespace std;
int main(void)
{
    int n...
3-23 3-23
460/3 这周C语言课的作业
【第一题】
#include <stdio.h>
void check_char(char ch);
void main()
{...
4-6 3-23
322/1 【代码】用C++标准库实现explode函数和join函数
#include <iostream>
#include <string>
#include <vector>
using namespace s...
3-22 3-22
377/4 近期的任务
开发部分Arslanbar 2.0的API
3-27 3-22
382/2 今天我开始阅读维基百科源代码
看了一下午,还算基本看懂了。
3-21 3-21
422/2 今天蓝桥杯考完了
前五个是对的
后面几个暂不知道答案
3-28 3-20
723/9 【试题】剪格子
// 参考资料: http://blog.csdn.net/xushao_movens/article/details/50637251
#include <iostream>...
5-23 3-19
423/3 【试题】逆波兰表达式
对于:-+3*5+261
其计算过程如下:
ev: {0, 0} -> {42, 9}
x: -+3*5+261
v1: {43, 7}
{...
3-19 3-19
485/1 【试题】颠倒的价牌
#include <stdio.h>
bool invert_digit(int *n)
{
    switch (*n)...
3-19 3-19
394/0 【试题】振兴中华
#include <stdio.h>
#include <string.h>
char *str[] = {"从我做起振", "我做起振兴", "做起振兴中", "...
3-19 3-19
363/1 【试题】排它平方数
#include <stdio.h>
#include <Windows.h>
bool diff(char *str)
{...
3-19 3-19
316/4 【试题】连号区间数
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int sort(int *...
3-18 3-18
292/1 【试题】第39级台阶
#include <stdio.h>
int count = 0;
char str[100];
void search(int nStaircases, int nSt...
3-18 3-18
746/11 2014-第五题 打印图形 递归调用情况
f(a, 5, 0, 16);
    f(a, 4, 0, 24);
        f(a,...
3-18 3-18
408/3 TMD,现在不翻墙就上不了Arslanbar
囧!
3-18 3-18
441/1 蓝桥杯还有四天了
rt
3-18 3-16
353/0 【试题】翻硬币
#include <stdio.h>
#include <string.h>
#define sw(a) a=((a=='o')?'*':'o')
#defi...
3-16 3-16
601/2 做了一个显示侃吧信息的Windows程序
3-15 3-15
430/3 【试题】打印十字图
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char *arr;...
3-16 3-15
334/0 【试题】错误票据
#include <stdio.h>
int main(void)
{
    int a[100001];...
3-15 3-15
316/0 今天是圆周率节
rt
3-14 3-14
292/1 【试题】分糖果
#include <stdio.h>
#include <stdlib.h>
// 执行一轮分发
void distribute(int *a, int n)...
3-14 3-14
269/0 【试题】买不到的数目
#include <stdio.h>
int main(void)
{
    int a, b;...
3-14 3-14
271/1 【试题】回文数字
#include <stdio.h>
int main(void)
{
    int n, i;...
3-13 3-13
520/9 【试题】小朋友排队
3-14 3-13
363/2 【试题】核桃的数量(三个数的最小公倍数的求法)
#include <stdio.h>
//#define gcd3(a, b, c) gcd(gcd((a), (b)), (c))
#define lcm(a, b) ((a...
3-13 3-13
398/6 【试题】带分数
#include <stdio.h>
#include <string.h>
int number, count = 0;
int getn(char *st...
3-13 3-13
303/0 全排列算法
#include <stdio.h>
void swap(int *a, int *b)
{
    int t = *a;...
3-13 3-13
341/4 我的《蚂蚁感冒》的代码
#include <stdio.h>
#include <stdlib.h>
typedef struct _ANT
{...
3-13 3-13