码迷,mamicode.com
首页 >  
搜索关键字:visual stdio    ( 19543个结果
实验2
#include <stdio.h> int main() { int a=5, b=7, c=100, d, e, f; d = a/b*c; e = a*c/b; f = c/b*a; printf("d=%d, e=%d, f=%d\n",d,e,f); return 0; } d=[5/7] ...
分类:其他好文   时间:2020-11-01 09:48:13    阅读次数:5
实验2
#include<stdio.h> int main(){ int a=5,b=7,c=100,d,e,f; d=a/b*c; e=a*c/b; f=c/b*a; printf("d=%d,e=%d,f=%d\n",d,e,f); return 0; } 数学计算式:d=5/7*100=0*100= ...
分类:其他好文   时间:2020-11-01 09:40:48    阅读次数:10
IDEA、Eclipse 默认常用快捷键对比总结,visual studio快捷键总结
一路走来,用了不少开发软件,再此总结一下,都是本人用过的 ▲Eclipse(MyEclipse快捷键是一样的): Shift +←↑↓ →:选中对象 Ctrl+Alt+↑↓:翻转 Ctrl+D: 删除当前行 Alt+↓ :当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了) Alt+↑ : ...
分类:系统相关   时间:2020-10-30 13:20:08    阅读次数:40
sqlist --逆置 max
//顺序表基本运算算法 #include <stdio.h> #include <malloc.h> #define MaxSize 50 typedef int ElemType; typedef struct { ElemType data[MaxSize]; //存放顺序表元素 int len ...
分类:数据库   时间:2020-10-30 12:49:15    阅读次数:16
阶乘,二分查找,字符移动
输出n的阶乘#include<stdio.h>#include<Windows.h>#pragmawarning(disable:4996)intFact(intn){intret=1;for(inti=1;i<=n;i++){ret*=i;}returnret;}intmain(){intn=5;intresult=Fact(n);printf("%d\n
分类:移动开发   时间:2020-10-27 11:55:52    阅读次数:37
PTA团体程序设计天梯赛题目集 L1-064 估值一亿的AI核心代码 (20分)
去年比赛的时候虽然对了,但写的好麻烦,以至于后面不敢再写这道题,今天又写了一遍,贴出来做纪念。 #include<stdio.h> #include<bits/stdc++.h> using namespace std; #define ll long long #define io_opt ios ...
分类:其他好文   时间:2020-10-27 11:46:36    阅读次数:32
阶乘,二分查找,字符移动
输出n的阶乘#include<stdio.h>#include<Windows.h>#pragmawarning(disable:4996)intFact(intn){intret=1;for(inti=1;i<=n;i++){ret*=i;}returnret;}intmain(){intn=5;intresult=Fact(n);printf("%d\n
分类:移动开发   时间:2020-10-27 11:34:27    阅读次数:31
实现一个函数来交换两个整数的内容(C语言代码练习)
//第一次尝试:#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> void ChangeNum(int* x,int* y) { int temp = 0; temp = *x; *x = *y; *y = te ...
分类:编程语言   时间:2020-10-26 11:50:11    阅读次数:62
Studio向导更新:重新支持Typelib和ActiveX
官宣 今天,我们高兴的宣布:Visual Studio 2019正式支持Typelib和ActiveX向导。 过去的一段时间,我们都在对Visual Studio中的向导进行全面的重写,以使它们更加容易的被开发者使用。上面提到的这两个向导,一开始并不在我们的重写计划中,并且它们已经在Visual S ...
分类:其他好文   时间:2020-10-26 11:07:29    阅读次数:22
xlslib开源库的使用
1、为了更好地使用xlslib开源库,本篇对其作了一个简单的封装,类为QMyExcel 头文件:qmyexcel.h #ifndef QMYEXCEL_H #define QMYEXCEL_H #include <stdio.h> #include <string.h> #include <wcha ...
分类:其他好文   时间:2020-10-26 10:38:40    阅读次数:22
19543条   上一页 1 ... 48 49 50 51 52 ... 1955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!