首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
#include <stdio.h>
int gys(int m, int n)
{
    if (n <= 0) return m;
    return gys(n, m%n);
}

int main()
{
    int count, i;
    int data1[20] = {};
    int data2[20] = {};
......................
阅读全部 | gougoudan 贴于 2020年6月17日 11:53     hide bbsi
#include <stdio.h>
int GetPathNumber(int a, int b)
{
    int f, f1, f2, i;
    f = 0; f1 = 1;
    for (i = a; i < b; i++){
        f2 = f + f1;
        f = f1;
        f1 = f2;
    }
    return f2;
}
......................
阅读全部 | gougoudan 贴于 2020年6月17日 11:26     hide bbsi
'在工程里引用 microsoft activex data objects 2.7 library 
'然后随便画个命令控件,在命令控件的单击事件里(click)输入以下代码
'以下是查询记录的代码: 
Dim cn As ADODB.Connection 
Dim rs As ADODB.Recordset 

Set cn = New ADODB.Connection 
Set rs = New ADODB.Recordset 

cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Jet OLEDB:Database Password = 111;Data Source=" & App.Path & "\1.mdb" '1.mdb 替换成你的数据库 
cn.Open 
rs.Open "select * from 表1 where 查询条件 ", cn, adOpenStatic, adLockOptimistic 
......................
阅读全部 | china_shy_wz 贴于 2020年6月17日 11:20     hide bbsi
#include <stdio.h>
int countNumber(int stepsNum)
{
    if (stepsNum == 0) {
        return 0;
    }
    if (stepsNum == 1) {
        return 1;
    }
    else if (stepsNum == 2) {
        return 2;
    }
......................
阅读全部 | gougoudan 贴于 2020年6月17日 11:16     hide bbsi
#include <stdio.h>
int gys(int a, int b)
{
    if (a == b) return a;
    if (a > b) return gys(a - b, b);
    return gys(a, b - a);
}

int main()
{
    int count, i;
    int data1[20] = {};
......................
阅读全部 | gougoudan 贴于 2020年6月17日 11:09     hide bbsi
#include <stdio.h>

void transpose(int mtx[3][3])
{
    int t;
    t = mtx[0][1]; mtx[0][1] = mtx[1][0]; mtx[1][0] = t;
    t = mtx[0][2]; mtx[0][2] = mtx[2][0]; mtx[2][0] = t;
    t = mtx[2][1]; mtx[2][1] = mtx[1][2]; mtx[1][2] = t;
}
int main()
{
    int i;
......................
阅读全部 | gougoudan 贴于 2020年6月17日 11:02     hide bbsi
#include <stdio.h>
int isprime(int n)
{
    if (n == 1) return 1;
    for (int i = 2; i*i <= n; i++)
        if (n%i == 0) return 0;
    return n > 1;
}
void xuanxian2()
{
    int n; int m;
    int i, s = 0;
......................
阅读全部 | gougoudan 贴于 2020年6月17日 10:55     hide bbsi
#include <stdio.h>
void shiftLeft(char str[], int count)
{
    int i;
    char temp[120];
    char* s1, *s2;
    for (i = 0; i < count; ++i){
        temp[i] = str[i];
    }
    s1 = str + count;
    s2 = str;
    while (*s2 = *s1){ ++s2; ++s1; };
......................
阅读全部 | gougoudan 贴于 2020年6月17日 10:40     hide bbsi
#include <stdio.h>
int substr(char str1[], char str2[], int index)
{
    int n = 0;
    char* s = str1;
    while (*s++) ++n;
    if (0 <= index && index < n){
        s = str1 + index;
        while(*str2++ = *s++);
        return 1;
    }
    s = "IndexError";
......................
阅读全部 | gougoudan 贴于 2020年6月17日 10:40     hide bbsi
//StudybarCommentBegin
#include <iostream>
#include <cmath>
using namespace std;
class Point
{
protected:
    double x, y;
public:
    Point(double x = 0, double y = 0)
    {
        this->x = x; this->y = y;
......................
阅读全部 | gougoudan 贴于 2020年6月16日 15:37     hide bbsi
上一页 96 97 98 99 100 101 102 103 104 105 下一页