首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
#include <stdio.h>
typedef struct 
{
    int num;
    char name[10];
    int math;
    int word;
}student;
student Input(student s)
{
    scanf("%d %s %d %d",&s.num,s.name,&s.math,&s.word);
    return s;
......................
阅读全部 | 公子小白13号 贴于 2020年9月7日 12:53     hide bbsi
#include <iostream>
#include <string>
#include <stdlib.h>

using namespace std;

#define N 200

//反转字符串
string res(string s)
{
int i = 0;
......................
阅读全部 | apull 贴于 2020年9月6日 18:43     hide bbsi
武器\n")

# 练习一下循环的使用
for i in range(1, 21):
print("我爱编程中国 {0} 次".format(i))
阅读全部 | 孔三十六 贴于 2020年9月6日 17:14     hide bbsi
sdajlok
阅读全部 | 孔三十六 贴于 2020年9月6日 17:05     hide bbsi
#include<stdio.h>
#define Height 10

int calculate(int Long,int Width); 

int main()
{
    int m_Long;
    int m_Width;
    int result;

    printf("长方形的高度为: %d\n",Height);
......................
阅读全部 | hj2693505022 贴于 2020年9月4日 19:50     hide bbsi
#include<stdio.h>
#define Height 10

int calculate(int Long,int Width);

int main()
{
    int m_Long;
    int m_Width;
    int result;

    printf("长方形的高度为: %d\n",Height);
......................
阅读全部 | hj2693505022 贴于 2020年9月4日 19:49     hide bbsi
#include<stdio.h>
#define Height 10

int calculate(int Long,int Width);

int main()
{
    int m_Long;
    int m_Width;
    int result;

    printf("长方形的高度为: %d\n",Height);
......................
阅读全部 | hj2693505022 贴于 2020年9月4日 19:49     hide bbsi
function makeTree()
        {
            $areas = $this->arr();
            $areaTree = [];
            foreach ($areas as $id=>$area)
            {
                if(isset($areas[$area["pid"]]))
                {
                    $areas[$area["pid"]]["children"][] = &$areas[$id];
                } 
                else 
                {
......................
阅读全部 | 小轩88 贴于 2020年9月2日 16:07     hide bbsi
package com.wzq.demo01;

/**
 * 业务接口
 * 
 * @author Muscleape
 *
 */
public interface UserService {
/**
 * 增加一个用户
 */
......................
阅读全部 | YT_zhai 贴于 2020年9月1日 10:41     hide bbsi
%  程序说明:目标跟踪程序,实现运动弹头对运动物体的三维跟踪,主函数
%  状态方程: x(t)=Ax(t-1)+Bu(t-1)+w(t)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 clc;
 clear;
 close all;

delta_t=0.01;     %测量周期,采样周期
longa=10000;      %机动时间常数的倒数,即机动频率
tf=6;   
T=tf/delta_t;     %时间长度3.7s,一共采用T=370次
%状态转移矩阵,用F表示
......................
阅读全部 | jmzhp 贴于 2020年8月30日 15:49     hide bbsi
上一页 88 89 90 91 92 93 94 95 96 97 下一页