摘要: 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) 编辑
摘要: 方法:按住ctrl+鼠标滑轮滚动 c++属于系统软件还是应用软件? 说哪个都不对,编译之前属于应用软件,after compile ,it belongs to system software. #include <iostream>using namespace std; int main(){ 阅读全文
posted @ 2017-09-05 09:02 Advancing-Swift 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 我们使用的开发工具是dev cpp (c plus plus),这是一个集成开发环境,我们称之为IDE(integrated development environment) 阅读全文
posted @ 2017-09-05 08:48 Advancing-Swift 阅读(216) 评论(0) 推荐(0) 编辑