码迷,mamicode.com
首页 >  
搜索关键字:visual stdio    ( 19543个结果
Visio Studio Code 插件推荐
Visio Studio Code 插件推荐 Error Gutters 让错误、警告更加明显。 Git History 可以查看历次提交的作者、日期、Hash 值、提交内容、修改的文件等 Output Colorizer 输出美化 Visual Studio Live Share 多人协同编程 L ...
分类:其他好文   时间:2020-12-31 12:52:54    阅读次数:0
c++语言学习(6)--分支结构 (2)
1、复合语句(程序块) 例子1: 输入两个整数,计算并显示较大的值和较小的值。 #include"stdio.h" int main() { int n1,n2,max,min; puts("请输入两个整数:"); printf("整数1:"); scanf("%d",&n1); printf("整 ...
分类:编程语言   时间:2020-12-30 11:15:10    阅读次数:0
#2020征文-开发板 Hi3861GPIO操作 点灯和按键实验操作
在大概了解鸿蒙系统后和学习完编译环境搭建,于是我做了一个小小的实验,利用Hi3861GPIO操作完成点灯和按键实验 先看最简单得LED灯闪烁操作 源码结构如下: Hello world.c文件内容: #include <stdio.h> #include <unistd.h> #include "o ...
分类:其他好文   时间:2020-12-30 11:13:42    阅读次数:0
Notes: How to address an academic presentation
How to address an academic presentation This small piece of note is based on the EFES class of UoG and the video. The question lying here is not how g ...
分类:其他好文   时间:2020-12-30 10:25:37    阅读次数:0
请求页式存储管理系统实验
操作系统实验三——请求页式存储管理 实验环境 C++ g++ 8.1.0 IDE Visual Studio 2017 Enterprise (15.9.13) 操作系统 Windows 10 x64 中文专业版 (1903) 实验目的 近年来,由于大规模集成电路(LSI)和超大规模集成电路(VLS ...
分类:其他好文   时间:2020-12-29 11:02:05    阅读次数:0
visual studio 编译器命令
官方的所有的编译器命令: https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/compiler-options/listed-alphabetically 代码中的编译器命令使用: 好处:在测试环境和正式环境执行不同的语 ...
分类:其他好文   时间:2020-12-28 11:54:29    阅读次数:0
C语言实验课第三次实验第一题
sy3_1.c 用双层循环(嵌套循环)输出如下字符图形(不用数组,重复做输出 1 位数字/字符操作) 98765 9876 987 98 9 98 987 9876 98765 代码: #include <stdio.h>#include <stdlib.h> int main(){ int i,j ...
分类:编程语言   时间:2020-12-28 11:27:17    阅读次数:0
exp+6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:其他好文   时间:2020-12-28 11:16:34    阅读次数:0
实验六
1.实验任务1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 / ...
分类:其他好文   时间:2020-12-28 11:15:35    阅读次数:0
结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 5 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2020-12-28 11:14:32    阅读次数:0
19543条   上一页 1 ... 33 34 35 36 37 ... 1955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!