上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 181 下一页
摘要: //题目:编程求输出所有符合以下特点4位数,这个数是否具有以下特点:这数本身是平方数,且其低2位和高2位所组成的2个2位数也是平方数。 //要求:使用程序中定义的变量 #include <stdio.h> #include <math.h> main(){ int qw,bw,sw,gw; // q 阅读全文
posted @ 2023-02-27 06:56 myrj 阅读(298) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" //有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 每行显示5个 main() { int i,j,k,count=0; for(i=1;i<5;i++) for(j=1;j<5;j++) for (k=1;k<5;k++) { i 阅读全文
posted @ 2023-02-27 06:17 myrj 阅读(65) 评论(0) 推荐(0) 编辑
摘要: #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; 阅读全文
posted @ 2023-02-26 19:59 myrj 阅读(157) 评论(0) 推荐(0) 编辑
摘要: //原数据状态 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 阅读(180) 评论(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 阅读(121) 评论(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 阅读(525) 评论(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 阅读(149) 评论(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 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 检测变量名filter观测值不连续,而filter2观测值是连续的 list filter2 if filter2!=(filter2[_n-1]+1) in 2/L //检测变量名filter2的值是否连续: //如果所有的取值是连续的,那么当前记录的在变量filter2上的值应该等于其前一条记录 阅读全文
posted @ 2023-02-26 06:03 myrj 阅读(277) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //<<九章算术>>更相减损法: 可以用来求两个数的最大公约数,即“可半者半之,不可半者,副置分母、子之数,以少减多,更相减损,求其等也。 //以等数约之。 ///第一步:任意给定两个正整数;判断它们是否都是偶数。若是,则用2约简;若不是则执行第二步。 //第二 阅读全文
posted @ 2023-02-25 08:27 myrj 阅读(75) 评论(0) 推荐(0) 编辑
上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 181 下一页