考研复试
你给我等着啊
这个作者很懒,什么都没留下…
展开
-
2017复试代码练习
1.格式转换,从一个文件中读取日期07/21/2016,转换为以下格式July 21,2016并输出到屏幕上 #include<iostream> #include<fstream> #include<sstream> #include<string> using namespace std; string monthtab[13]={"","Jan...原创 2020-04-04 15:58:32 · 355 阅读 · 0 评论 -
2016复试代码练习
1. 使用字符数组存储一段字符,判断是否是回文字符串(需要判断并忽略空格) #include<iostream> using namespace std; bool judge(char *s) { int left=0; int right=strlen(s)-1; while(left<=right) { if(s[left++]==s[right--]) ...原创 2020-04-03 21:14:53 · 250 阅读 · 0 评论 -
2015复试代码练习
思路:要求的点,应该是精度,也就是判断循环终止的点,之前好像也考过类似的,同时设置了多组样例输入方便测试。 #include<iostream> #include<cstdio> #include<cmath> #include<iomanip> using namespace std; double jiecheng(int n) { if(n...原创 2020-04-03 18:14:24 · 349 阅读 · 0 评论 -
2014复试代码练习
1.用递归编程 求 ack(int m, int n),定义似乎是 ack(0,n) = n+1; ack(m,0)=m+1 ack(m,n) = ack(ack(m-1),ack(n-1)) 2.写一个 IntToStr(int a)函数将一个整形数转换为字符串 #include<iostream> #include<string> #include<sstream...原创 2020-04-02 22:35:52 · 271 阅读 · 0 评论 -
2013复试代码练习
1.编写程序,计算1~20000之间的质数,输出时要求每行10个数. #include<iostream> #include<cmath> using namespace std; bool isPrime(int number) { for(int i=2;i<sqrt(number);i++) //为提高效率,且素数是成对存在的 { if(number...原创 2020-04-02 17:05:39 · 377 阅读 · 0 评论 -
2012复试代码练习
1.编写程序,求最小公倍数。 #include<iostream> using namespace std; int gcd(int m,int n) // 最大公因子 { int t; while(m%n!=0) { t=m; m=n; n=t%n; } return n; } int main() { cout<<(24*18/gcd(24,...原创 2020-04-02 10:58:18 · 379 阅读 · 0 评论 -
2011复试代码练习
1.编写一个程序,利用下面的公式计算 ex 的值,精确到10^-10 (不写了) 思路: 阶乘函数, cmath的pow(int x,int k) 来求x的k次方。 循环,终止条件为temp>=10e-10,说明已经求到了小数点后十位 用iomanip的setprecision(10)来输出 2. 编写一个程序,利用下面的公式计算pi的值,要求小数点后的位数为计算机可表达的最大范围。 ...原创 2020-03-31 21:49:03 · 528 阅读 · 0 评论 -
2010复试程序练习
1、输入n个十进制数转换成二进制写到文件,n是随机得到 #include<iostream> #include<stdlib.h> #include<time.h> #include<fstream> #include<string> using namespace std; string reverse(string temp) { ...原创 2020-03-31 18:02:34 · 401 阅读 · 1 评论 -
复试学习记录(1)
1.考的全局变量,局部变量,作用于哪个函数块。 #include<iostream> using namespace std; int k=5; int main() { int k=10; for(int i=1;i<5;i++) { int k=0; k+=i; cout<<k<<","<<::k<<'\n';...原创 2020-03-11 12:02:16 · 211 阅读 · 0 评论 -
cmath,iomanip,string常用函数
1.通过公式求三角形面积 cmath中常用的函数 int abs (int i) 返回 绝对值 double pow(double x,double y) 返回 x^y x的y次幂 double sqrt(double x) 返回 +根号x int rand() 返回 随机数 海伦公式:已知三条边长a,b,c,S=根号下p(p-a)(p-b)(p-c) p是三角形周长的一半 p=...原创 2020-03-02 17:30:14 · 414 阅读 · 0 评论 -
2019复试程序练习
一.程序阅读题 1.switch和for循环套用,要注意case后有无break。 #include<iostream> using namespace std; int main() { int a=4,c=0,b=1; for(int i=0;i<5;++i) { switch((--a)>0) { case 0: switch(c++) // ...原创 2020-02-29 22:07:52 · 1167 阅读 · 1 评论 -
2018复试代码练习
填程序: 1.判断闰年 #include<iostream> using namespace std; //判断闰年 void judge(int year) { if(year%4==0&&year%100!=0||year%400==0) { cout<<year<<"是闰年"<<endl; } else { ...原创 2020-02-27 17:34:41 · 395 阅读 · 0 评论