上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 187 下一页
摘要: //原数据状态 des // Contains data from D:\Stata17\ado\base/a/auto.dta // Observations: 74 1978 automobile data // Variables: 12 13 Apr 2020 17:45 // (_dta 阅读全文
posted @ 2023-02-26 16:16 myrj 阅读(260) 评论(0) 推荐(0)
摘要: //检测所有能通过ssc安装的以d开头的命令列表 ssc describe d // // http://fmwww.bc.edu/repec/bocode/d/ // (no title) // // // PACKAGES you could -net describe-: // d3netwo 阅读全文
posted @ 2023-02-26 11:10 myrj 阅读(371) 评论(0) 推荐(0)
摘要: sysuse auto, clear // (1978 automobile data) des // // Contains data from D:\Stata17\ado\base/a/auto.dta // Observations: 74 1978 automobile data // V 阅读全文
posted @ 2023-02-26 11:04 myrj 阅读(825) 评论(0) 推荐(0)
摘要: /*程序功能: 输入一个不大于4位正整数,判断它是几位数,然后输出各位之积。*/ #include <stdio.h> main() { int a,【1】,【2】,b; scanf("%d",&a); 【3】=a; if(【4】) { do{ wei++; cj=【5】; a=【6】; }whil 阅读全文
posted @ 2023-02-26 07:53 myrj 阅读(193) 评论(0) 推荐(0)
摘要: #include <stdio.h> // 实现两个字符串的连接(不使用库函数),即把字符串s2连接到字符串s1的后面 【1】 main() { char s1[80],s2[20]; int 【2】,【3】; 【4】(s1); 【5】(s2); while(【6】) { i++; } while( 阅读全文
posted @ 2023-02-26 07:01 myrj 阅读(949) 评论(0) 推荐(0)
摘要: 检测变量名filter观测值不连续,而filter2观测值是连续的 list filter2 if filter2!=(filter2[_n-1]+1) in 2/L //检测变量名filter2的值是否连续: //如果所有的取值是连续的,那么当前记录的在变量filter2上的值应该等于其前一条记录 阅读全文
posted @ 2023-02-26 06:03 myrj 阅读(448) 评论(0) 推荐(0)
摘要: #include <stdio.h> //<<九章算术>>更相减损法: 可以用来求两个数的最大公约数,即“可半者半之,不可半者,副置分母、子之数,以少减多,更相减损,求其等也。 //以等数约之。 ///第一步:任意给定两个正整数;判断它们是否都是偶数。若是,则用2约简;若不是则执行第二步。 //第二 阅读全文
posted @ 2023-02-25 08:27 myrj 阅读(120) 评论(0) 推荐(0)
摘要: #include <stdio.h> //求最大公约数:辗转相除法:辗转相除法是求两个自然数的最大公约数的一种方法,也叫欧几里德算法。 //319 377:319%377=319 377%319=58 319%58=29 58%29=0 29为最大公约数 int gys(int a,int b) { 阅读全文
posted @ 2023-02-25 08:22 myrj 阅读(70) 评论(0) 推荐(0)
摘要: sysdir // STATA: D:\Stata17\ stata17安装位置 // BASE: D:\Stata17\ado\base\ stata官方命令 // SITE: D:\Stata17\ado\site\ // PLUS: C:\Users\Administrator\ado\plu 阅读全文
posted @ 2023-02-25 05:54 myrj 阅读(238) 评论(0) 推荐(0)
摘要: Relational Arithmetic Logical (numeric and string) + addition & and > greater than - subtraction | or < less than * multiplication ! not >= > or equal 阅读全文
posted @ 2023-02-24 21:21 myrj 阅读(88) 评论(0) 推荐(0)
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 187 下一页