首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
package practice;

public class Four_Fortyfive_Array_User {
//数组空间
static Four_Fortyfive_Object_User[] Array=new Four_Fortyfive_Object_User[0];
//有效数据个数
static int num=0;


public Four_Fortyfive_Array_User(){
insert(new Four_Fortyfive_Object_User("张三","123456","17788888888"));
  insert(new Four_Fortyfive_Object_User("李四","123456","17788888888"));
......................
阅读全部 | 诺亚1998 贴于 2020年6月23日 11:15     hide bbsi
C语言初学者,请问这是啥意思,有啥子用呀

int m;
m = *a;
*a = *b;
*b = m;
阅读全部 | wegame 贴于 2020年6月23日 00:08     show bbsi
ssssssssss
阅读全部 | YT_zhai 贴于 2020年6月21日 18:19     show bbsi
#include <stdio.h>
bool isPrime_2(int n){

    if ((n == 2) || (n == 3)) return 1;
    if ((n % 6 != 1) && (n % 6 != 5)) return 0;
    for (int i = 5; i*i <= n; i += 6){
        if ((n%i == 0) || (n % (i + 2) == 0))
            return 0;
    }
    return 1;
}
void xuanxian2(int n, int m)
......................
阅读全部 | gougoudan 贴于 2020年6月20日 18:06     hide bbsi
ELF Header

  Class:   ELF32
  Encoding:   Little endian
  ELFVersion: Current
  Type:    Shared object file
  Machine: Intel 80386
  Version: Current
  Entry:   0x4d0
  Flags:   0x0

Section Headers: Size=1d
......................
阅读全部 | YT_zhai 贴于 2020年6月20日 12:24     hide bbsi
dd
阅读全部 | YT_zhai 贴于 2020年6月20日 10:25     show bbsi
/*
-----#####------#--------#--------#####------
----#-----#-----#--------#-------#-----------
---#------------#--------#------#------------
---#------------##########------#------------
---#--######----#--------#------#--######----
---#-----#------#--------#------#-----#------
----#----#------#--------#-------#----#------
-----#####------#--------#--------#####------
*/

//完整版下载链接:https://www.easeye.xyz/hack.html
......................
阅读全部 | Nictheboy 贴于 2020年6月19日 15:06     hide bbsi
#include <iostream>
#include <iomanip>
using namespace std;

//玩家的父类-抽象类
class Cplayer
{
public:
    virtual int go() = 0;
};

class Cjudger
......................
阅读全部 | gougoudan 贴于 2020年6月17日 17:33     hide bbsi
#include <iostream>
#include <string>
#include <list>
using namespace std;
class Observer {   //抽象类
public:
    virtual void update(string message) = 0;   //更新行为,纯虚函数
};

class WeixinUser : public Observer
{
private:
......................
阅读全部 | gougoudan 贴于 2020年6月17日 16:14     hide bbsi
#include <iostream>
using namespace std;

class FiniteField
{
    int mPrime, mD;
public:
    FiniteField(int ip = 0, int id = 0)
        :mPrime(ip), mD(id)
    {
    }
    void Show()
......................
阅读全部 | gougoudan 贴于 2020年6月17日 16:05     hide bbsi
上一页 94 95 96 97 98 99 100 101 102 103 下一页