- 博客(8)
- 资源 (1)
- 收藏
- 关注
原创 复试4.1大小写字母转换
#include <iostream>using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */void transLetter(int n,char *p){ int i = 0;...
2020-02-18 19:59:20 243
原创 复试3.2选择排序c++
#include <iostream>using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */void selSort(double arrayTest[],int len){ doubl...
2020-02-15 20:20:09 133
原创 复试3.1冒泡排序c++
#include <iostream>using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */void bubleSort(double array[],int len){ double t...
2020-02-15 19:14:15 150
原创 复试2.c++,求最大最小数
#include <iostream>/* run this program using the console pauser or add your own getch, system("pause") or input loop */using namespace std;/* n为需比较的个数; *p为数组指针;*/double maxNum(in...
2020-02-13 19:31:20 306
原创 复试1.2c++累乘器
#include <iostream>using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */double Accumulator(double iniN,double endN){ dou...
2020-02-13 19:28:44 522
原创 Linux初学笔记
笔记一:关机:先关虚拟机,然后再关闭物理机什么是内核:管理底层工作,优先级问题等命令运行在内核之上GPL:全部开源LGPL:可开源部分最初的开源软件都是用C语言写的 Linux特性:真正多用户、多任务操作系统;符合POSIX的系统提供shell命令解释程序和编程语言提供强大管理功能,包括远程功能具有内核的编程接口(运算速度快,但有安全问题
2017-08-04 22:52:00 347
原创 java复习笔记一
关键字组成全都是小写字母goto和const仅占用而未赋予意义标识符:就是给类,接口,方法,变量等起名字时使用的字符序列 标识符组成规则:英文大小写字母数字字符$和下划线包的命名格式:和域名相反类名命名格式:首字母大写变量命名格式:第一个单词首字母不必大写,后面的单词首字母大写常量命名格式:一般都是大写注释有三种:单行注释:/
2017-08-04 22:46:43 199
原创 小芳的妈妈每天给她2.5元钱,她都会存起来,但是,每 当这一天是存钱的第5天或者5的倍数的话,她都会花去6 元钱,请问,经过多少天,小芳才可以存到100元钱。
package TestWhile;public class Save { public static void main(String[] args) { double x = 0; int day = 1; for (x = 2.5; x <= 100; x += 2.5) { while (day % 5 == 0) { x -= 6; break
2017-08-04 22:41:28 4924 2
软件设计师历年真题
2018-03-20
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人