摘要: 概述 JavaWeb:使用Java语言开发基于互联网的项目 1、软件架构: C/S: Client/Server 客户端/服务器端 在用户本地有一个客户端程序,在远程有一个服务器端程序 如:QQ,迅雷... 优点:用户体验好 缺点:开发、安装,部署,维护 麻烦 B/S: Browser/Server 阅读全文
posted @ 2019-09-17 08:59 huaye37 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 大三了,最近在学习JavaWeb。打算认真学习。记录一下 阅读全文
posted @ 2019-09-17 08:25 huaye37 阅读(68) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int sak(int z) { return 1 + 4 * z + 2 * z * z; } int main() { int x; char a; cin >> x >> a; //cout << x << a 阅读全文
posted @ 2018-09-25 14:52 huaye37 阅读(160) 评论(0) 推荐(0) 编辑
摘要: bool sushu(int n){ if (n == 0 || n == 1) { return false; } if (n == 2) { return true; } if (n > 2) { for (int i = 2; i < sqrt(n) + 1; i++) { if (n%i = 阅读全文
posted @ 2018-09-21 18:47 huaye37 阅读(61) 评论(0) 推荐(0) 编辑