首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看ABAP
# include<stdio.h>
# include<graphics.h>
# include<conio.h>
# include<stdlib.h>

#define SNAKE_NUM 500
enum DIR //表示蛇的方向
{
UP,
DOWN,
LEFT,
RIGHT,
......................
阅读全部 | 周蓓蓓 贴于 2024年6月18日 21:23     hide bbsi
print(2+3)
阅读全部 | 周蓓蓓 贴于 2024年6月18日 21:22     hide bbsi
#include<iostream.h>
#include<stdlib.h>
#include<math.h>
void index_29();
void yunsuan_29();
void yunsuan_29(){
}
void index_29()
{ system("cls");
int xuanxiang;
cout<<endl;
cout<<endl;
......................
阅读全部 | 周蓓蓓 贴于 2024年6月18日 21:16     hide bbsi
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
/*
* 加1后进位操作 
* 用字符串模拟数字的进位操作
*/
void add_one(int *array, int array_len, int radio, int *flow)
{
        int i;
        for ( i=array_len-1; i>=0; i-- )
        {
......................
阅读全部 | wp231957 贴于 2014年4月23日 08:30     hide bbsi
1