摘要:
#include <stdio.h> //任意输入两个整数,输出这两个数的最小公倍数 main() { int a,b,c,gys,gbs; scanf("%d%d",&a,&b) ; for(c=1;c<=a*b;c++) { if(c%a==0&& c%b==0) { gbs=c; break; 阅读全文
摘要:
//原数据状态 des // Contains data from D:\Stata17\ado\base/a/auto.dta // Observations: 74 1978 automobile data // Variables: 12 13 Apr 2020 17:45 // (_dta 阅读全文
摘要:
//检测所有能通过ssc安装的以d开头的命令列表 ssc describe d // // http://fmwww.bc.edu/repec/bocode/d/ // (no title) // // // PACKAGES you could -net describe-: // d3netwo 阅读全文
摘要:
sysuse auto, clear // (1978 automobile data) des // // Contains data from D:\Stata17\ado\base/a/auto.dta // Observations: 74 1978 automobile data // V 阅读全文
摘要:
/*程序功能: 输入一个不大于4位正整数,判断它是几位数,然后输出各位之积。*/ #include <stdio.h> main() { int a,【1】,【2】,b; scanf("%d",&a); 【3】=a; if(【4】) { do{ wei++; cj=【5】; a=【6】; }whil 阅读全文
摘要:
#include <stdio.h> // 实现两个字符串的连接(不使用库函数),即把字符串s2连接到字符串s1的后面 【1】 main() { char s1[80],s2[20]; int 【2】,【3】; 【4】(s1); 【5】(s2); while(【6】) { i++; } while( 阅读全文
摘要:
检测变量名filter观测值不连续,而filter2观测值是连续的 list filter2 if filter2!=(filter2[_n-1]+1) in 2/L //检测变量名filter2的值是否连续: //如果所有的取值是连续的,那么当前记录的在变量filter2上的值应该等于其前一条记录 阅读全文