Visio Studio Code 插件推荐 Error Gutters 让错误、警告更加明显。 Git History 可以查看历次提交的作者、日期、Hash 值、提交内容、修改的文件等 Output Colorizer 输出美化 Visual Studio Live Share 多人协同编程 L ...
分类:
其他好文 时间:
2020-12-31 12:52:54
阅读次数:
0
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
在大概了解鸿蒙系统后和学习完编译环境搭建,于是我做了一个小小的实验,利用Hi3861GPIO操作完成点灯和按键实验 先看最简单得LED灯闪烁操作 源码结构如下: Hello world.c文件内容: #include <stdio.h> #include <unistd.h> #include "o ...
分类:
其他好文 时间:
2020-12-30 11:13:42
阅读次数:
0
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
官方的所有的编译器命令: https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/compiler-options/listed-alphabetically 代码中的编译器命令使用: 好处:在测试环境和正式环境执行不同的语 ...
分类:
其他好文 时间:
2020-12-28 11:54:29
阅读次数:
0
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
#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