码迷,mamicode.com
首页 >  
搜索关键字:visual stdio    ( 19543个结果
黄金分割法求区间
#include <stdio.h> #include <math.h> double a, b;//定义全局变量,传递区间值,可尝试指针 double get_num(double m) { double f; f = m * m + 7 * m - 9; return f; } double s ...
分类:其他好文   时间:2020-12-04 11:42:12    阅读次数:18
熟悉编程语言
最受欢迎的编程语言top50 这50种编程语言的编程泛型 面向过程:C,Fortran,COBOL 面向对象:python,java,C++,C#,Visual Basic,JavaScript,PHP, Groovy,Perl,Go,Objective-C,SWIFT,Ruby,Rust,Type ...
分类:编程语言   时间:2020-12-04 10:51:09    阅读次数:24
c语言题目:汉诺塔问题
#include <stdio.h>int main(){ void hanoi(int n,char one, char two,char three); int m; scanf("%d",&m); printf("move %d diskes:\n",m); hanoi(m,'A','B',' ...
分类:编程语言   时间:2020-12-03 12:14:56    阅读次数:7
熟悉编程语言
一.2020年11月份各语言的排名:1. C2 .Python3 .Java4 .C++5 .C#6 .Visual Basic7 .JavaScript8 .PHP9 .R10. SQL11 .Groovy12 .Perl13 .Go14 .Swift15 .Ruby16 .Assembly la ...
分类:编程语言   时间:2020-12-03 12:11:17    阅读次数:23
实验4
1.不能,因为单个函数无法返回两个变量。 2.略 static变量用的是上次结算的值 3.代码 1 #include <stdio.h> 2 3 #define N 1000 4 int fun(int n,int m,int bb[N]) { 5 int i,j,k=0,flag; 6 7 for ...
分类:其他好文   时间:2020-12-03 12:03:49    阅读次数:5
SDUST数据结构 - chap8 查找
选择题: 函数题: 6-1 二分查找: 裁判测试程序样例: #include <stdio.h> #include <stdlib.h> #define MAXSIZE 10 #define NotFound 0 typedef int ElementType; typedef int Positi ...
分类:其他好文   时间:2020-12-03 12:00:44    阅读次数:5
用于机器人导航辅助的6自由度姿态估计的平面辅助视觉惯性里程计
作者:Amber 点击上方“3D视觉工坊”,选择“星标” 干货第一时间送达 Plane-Aided Visual-Inertial Odometry for 6-DOF Pose Estimation of a Robotic Navigation Aid 用于机器人导航辅助的6自由度姿态估计的平面 ...
分类:其他好文   时间:2020-12-03 11:51:21    阅读次数:6
实验4
任务1 可是使用数组变量和指针变量 任务2 //2.1 #include<stdio.h> long long fac(int n); int main(){ int i,n; printf("Enter n:"); scanf("%d",&n); for(i=1;i<=n;i++) printf( ...
分类:其他好文   时间:2020-12-03 11:47:34    阅读次数:4
HTML CSS 引入方法.
1.在Visual Studio Code创建一个后缀名为 .html 的文件并输入骨架标签 。 2.在Visual Studio Code创建一个后缀名为 .css的文件。 3.CSS样式代码输入完成后返回 .html的文件<head>标签里输入<link>标签,在<link>标签里的 href里 ...
分类:Web程序   时间:2020-12-03 11:44:03    阅读次数:10
C原始指针2--创建交换值函数进一步理解
1 #include <stdio.h> 2 int k = 222, t = 9; 3 void swap(int *a, int *b); 4 5 main() { 6 swap(&k, &t); 7 printf("\nkkkkkk=%d\nttttttttt=%d", k, t); 8 } ...
分类:其他好文   时间:2020-12-02 12:36:50    阅读次数:8
19543条   上一页 1 ... 38 39 40 41 42 ... 1955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!