/*项目名称:简单的四则计算器*/// #include <stdio.h>/*是在程序编译之前要处理的内容,称为编译预处理命令。编译预处理命令还有很多,它们都以“#”开头,并且不用分号结尾,所以是c语言的程序语句。*/#include <math.h>/*意思是包含math库,实际上就是一个头文件 ...
分类:
其他好文 时间:
2021-06-13 10:45:51
阅读次数:
0
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2021-06-13 10:45:15
阅读次数:
0
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 Code #include <bits/stdc++.h> #define N 100005 using namespace std; struct node { int x, to, nxt; }hd[N ...
分类:
其他好文 时间:
2021-06-13 10:42:08
阅读次数:
0
例1:题目: 从左下走到右上有多少种走法 #include<stdio.h> int a[7][7]; int main() { a[5][1]=1; for(int j=1;j<=5;j++) { for(int i=5;i>=1;i--) { if(i==5&&j==1) a[i][j]=1; ...
分类:
其他好文 时间:
2021-06-13 10:18:07
阅读次数:
0
编译OpenGL Red Book 的例子时出现错误, stdlib.h(406) : error C2381: “exit”: 重定义;__declspec(noreturn) 不同 glut.h(146) : 参见“exit”的声明 解决方法:#include <GL/glut.h> #incl ...
分类:
其他好文 时间:
2021-06-13 10:02:41
阅读次数:
0
#include <cmath> #include <queue> #include <vector> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define ZYC using #d ...
分类:
其他好文 时间:
2021-06-13 09:59:25
阅读次数:
0
字符串加法和字符串与单字符乘法见 "简单常用的一些函数,个人的函数库" 的13和14 cpp include include include using namespace std; string addStrings(strin ...
分类:
其他好文 时间:
2021-06-13 09:53:38
阅读次数:
0
#include <iostream> using namespace std; double* aaa() { double tmp[3] = { 1.01,2.02,3.03 }; double* tmp1 = new double[3]; for (size_t i = 0; i < 3; i ...
分类:
编程语言 时间:
2021-06-13 09:52:53
阅读次数:
0
# 1 安装 pip install coreapi # 2 在路由中配置 from rest_framework.documentation import include_docs_urls urlpatterns = [ ... path('docs/', include_docs_urls(t ...
分类:
其他好文 时间:
2021-06-13 09:22:11
阅读次数:
0
JSP 1、什么是JSP Java Server Pages:Java服务器端页面,和servlet一样,用于动态web技术 最大的特点: 写JSP就像在写HTML 区别: HTML只给用户提供静态的数据 JSP页面中可以嵌入JAVA代码,为用户提供动态数据; 2、JSP原理 思路:JSP到底怎么执 ...
分类:
编程语言 时间:
2021-06-11 19:06:37
阅读次数:
0