码迷,mamicode.com
首页 >  
搜索关键字:jsp include    ( 101623个结果
C语言程序设计【1032】
简述算法的概念及其特点,同时请画出求s=1+2+3+…+10之值的算法流程图。 1.#include "stdio.h" voidsort(int x[ ],int n) {int i,j,k,t; for(i=0;i {k=i; for(j=i+1;j if(x[k]>x[j])k=j; if(i ...
分类:编程语言   时间:2021-06-11 18:45:27    阅读次数:0
c语言中向文本文件、二进制文件中写入实数
c语言向文本文件、二进制文件中写入实数。 1、 #include <stdio.h> int main(void) { FILE *fp; double pi = 3.14159265358979323846; printf("pi from value: %23.21f.\n", pi); // ...
分类:编程语言   时间:2021-06-11 18:40:57    阅读次数:0
19. JSP - 实现文件下载
文件下载 超链接下载超链接下载是指,将下载资源作为超链接的链接目的文件出现。若浏览器可以解析该资源文件,则将在浏览器上直接显示文件内容;若浏览器不支持该文件的解析,则会弹出另存为对话框,要求用户保存。 在Web文件夹下创建download文件夹,里面放入一些文件。 创建html: html这样写: ...
分类:Web程序   时间:2021-06-11 18:40:08    阅读次数:0
c语言中fgetc函数:显示文件内容
1、显示a.txt文件的内容 #include <stdio.h> int main(void) { FILE *fp; int ch; char filename[FILENAME_MAX]; printf("Please input the filename: "); scanf("%s", f ...
分类:编程语言   时间:2021-06-11 18:30:11    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:28:53    阅读次数:0
实验6 结构体
实验任务1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // ...
分类:其他好文   时间:2021-06-11 18:27:55    阅读次数:0
Qt5.15编译mysql驱动
1、环境 Qt5.15 + mysql-5.7.26 Qt源码路径 C:\Qt\5.15.0\Src\qtbase\src\plugins\sqldrivers\mysql mysql-5.7.26安装路径 C:\Program Files (x86)\mysql-5.7.26-win32 2、使用 ...
分类:数据库   时间:2021-06-11 18:24:15    阅读次数:0
实验六 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:23:03    阅读次数:0
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:22:43    阅读次数:0
实验6 结构体
1. #include<stdio.h>#include<stdlib.h>#include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:20:49    阅读次数:0
101623条   上一页 1 ... 11 12 13 14 15 ... 10163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!