一.水仙花数 1.方式一:这是我的思路,取各个位数的方式.我个人习惯于使用取模运算. public static List<Integer> dealNarcissiticNumberMethodOne( Integer startNum, Integer endNum) { List<Integer> resultList = new LinkedList<Integer>(); for (Integer i = startNum; i <= endNum; i…
三. 导入数据 图02-03:Source of data that can be imported into a dataset 11. 从键盘导入数据 (1)可能是最简单的数据导入方式. (2)使用edit()函数,R将会打开一个文本编辑器,然后再手动的输入数据.具体步骤如下: · 创建一个新的数据帧(data.frame),并填入变量名和类型(variable names&modes): · 调用文本编辑器,键入数据,并保存结果到数据对象上(data object). 例02-21:从键盘…