码迷,mamicode.com
首页 >  
搜索关键字:visual stdio 2013    ( 19543个结果
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 17:57:57    阅读次数:0
c语言 13-12
1、 #include <stdio.h> #include <time.h> char data_file[] = "datatime.dat"; void get_data(void) { FILE *fp; if((fp = fopen(data_file, "r")) == NULL) pr ...
分类:编程语言   时间:2021-06-10 17:48:54    阅读次数:0
实验六
1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 // 运行程序 ...
分类:其他好文   时间:2021-06-08 23:46:49    阅读次数:0
实验六
实验任务一: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n ...
分类:其他好文   时间:2021-06-08 23:29:04    阅读次数:0
c语言获取当前日期和时间
1、 #include <stdio.h> #include <time.h> // time_t数据类型,日历时间头文件 int main(void) { time_t current = time(NULL); // 利用time函数获取日历时间(返回1970之后的秒数,整型) struct t ...
分类:编程语言   时间:2021-06-08 23:04:50    阅读次数:0
Visual Studio插件CodeRush 2021第一个重大版本发布
CodeRush是一个强大的Visual Studio .NET 插件,它利用整合技术,通过促进开发者和团队效率来提升开发者体验。CodeRush能帮助你以极高的效率创建和维护源代码。Consume-first 申明,强大的模板,智能的选择工具,智能代码分析和创新的导航以及一个无与伦比的重构集,在它 ...
分类:其他好文   时间:2021-06-07 20:28:16    阅读次数:0
vscode use cl.exe build C/C++
.vscode/tasks.json { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "t ...
分类:编程语言   时间:2021-06-07 20:25:28    阅读次数:0
c语言 13-1
1、 #include <stdio.h> int main(void) { FILE *fp; // 打开文件前,必须定义FILE*型指针变量。 char file[128]; printf("please input the filename: "); scanf("%s", file); // ...
分类:编程语言   时间:2021-06-07 20:01:39    阅读次数:0
实验6 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 typedef struct student { int id; /* 学生学号 */ char name[20]; /* 学生姓名 */ char subject ...
分类:其他好文   时间:2021-06-06 19:16:23    阅读次数:0
c语言中用结构体表示点的坐标,并计算两点之间的距离
c语言中用结构体表示点的坐标,并计算两点之间的距离 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ double x; double y; }Point; double dist(P ...
分类:编程语言   时间:2021-06-06 18:46:18    阅读次数:0
19543条   上一页 1 ... 6 7 8 9 10 ... 1955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!