摘要: (1)signed int类型 整数型 占内存4个字节 一个字节byte 占8个二进制位 一个整型就占32位 (2)short int 短整型 占内存2个字节 一个短整型占16位 (3)long int 占内存4个字节 一个字节byte 占8个二进制位 一个整型就占32位 (4)double 双精度 阅读全文
posted @ 2017-09-08 09:44 Advancing-Swift 阅读(334) 评论(0) 推荐(1) 编辑
摘要: #include using namespace std; int main() { int a,b,c; cout>a>>b>>c; void sort(int x,int y,int z); sort(a,b,c);//abc有具体值,称为实际参数 return 0; } void sort(int x,int y,int z)... 阅读全文
posted @ 2017-09-08 09:09 Advancing-Swift 阅读(348) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { int a,b,c; int f(int x,int y,int z);//这是函数的声明 //cin console控制台 cout>a>>b>>c; c=f(a,b,c);//abc有具体值,称为实际参数 cout<<c<<endl; return 0;... 阅读全文
posted @ 2017-09-08 08:49 Advancing-Swift 阅读(395) 评论(2) 推荐(0) 编辑
摘要: package com.swift; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import javax.servlet.ServletException; import javax.s... 阅读全文
posted @ 2017-09-07 11:50 Advancing-Swift 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 从浏览器获取数据到服务器,服务器将得到数据再显示在浏览器上英文字母正常显示,中文字符乱码的问题,已经使用了 response.setContentType("text/html;charset=utf-8"); 将浏览器编码设置为utf-8,但依然乱码 源码如下: 解决过程 通过代码查看当前电脑的编 阅读全文
posted @ 2017-09-07 11:06 Advancing-Swift 阅读(51533) 评论(1) 推荐(1) 编辑
摘要: 如果发现下图中 apache tomcat 的Overview 视图中发现 Server Locations 灰色显示 那么首先需要配置好TomCat的TOMCAT_HOME 和 CATALINA_HOME 环境变量 到 TomCat的安装目录(bin的上一层) 然后如果还是会出现404错误,继续按 阅读全文
posted @ 2017-09-06 20:14 Advancing-Swift 阅读(310) 评论(0) 推荐(0) 编辑
摘要: package com.swift.servlet; import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStreamWriter;import java.io.PrintWriter; im 阅读全文
posted @ 2017-09-05 20:28 Advancing-Swift 阅读(465) 评论(0) 推荐(0) 编辑
摘要: endl是 end line的意思,表示此行结束,换行,就是回车 阅读全文
posted @ 2017-09-05 09:32 Advancing-Swift 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std; int main(){ //求两数中的大者? int a,b; cin>>a>>b; if(a>b) cout<<"The max number is:"<<a; else cout<<"The max number i 阅读全文
posted @ 2017-09-05 09:24 Advancing-Swift 阅读(227) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std; int main(){ //求两数之和 int a,b,sum; a=11; b=22; sum=a+b; cout<<"两个数a与b的和是"<<"sum="<<sum;} compare with the up pro 阅读全文
posted @ 2017-09-05 09:17 Advancing-Swift 阅读(734) 评论(0) 推荐(0) 编辑