- 1、本文档共18页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
【2017年整理】Java题
Description 输出以下菱形图案:
Input Output 菱形图案。 Sample Input 5
9
#includeiostream
using namespace std;
class LX
{
public:
LX(int a):n(a){}
void getLX();
private:
int n;
};
void LX::getLX()
{
int i;
int m;
int k=(n-1)/2;
for(i=1;;i++)
{
m=k;
for(;m0;m--)
cout ;
k--;
for(int s=1;s2*i;s++)
cout*;
coutendl;
if((2*i-1)==n)
break;
}
i-=1;
k+=2;
for(;i0;i--)
{
m=k;
for(;m0;m--)
cout ;
k++;
for(int s=1;s2*i;s++)
cout*;
coutendl;
}
}
int main()
{
int n;
while(cinn)
{
LX myL(n);
myL.getLX();
}
return 0;
}
Other:
#includeiostream
using namespace std;
class lx{
public:
lx(int a){n=a;}
void show(){
int i,j,k;
for(i=1;i=n/2+1;i++){
for(j=0;j(n/2)+1-i;j++)
cout ;
for(k=0;k2*i-1;k++){
cout*;
}
coutendl;
}
for(i=1;i=n/2;i++){
for(j=0;ji;j++)
cout ;
for(k=0;kn-(2*i);k++){
cout*;
}
coutendl;
}
}
private:
int n;
};
int main()
{
int l;
while(cinl)
{
lx a(l);
a.show();
}
}
陶陶家的院子里有一棵苹果树,每到秋天树上就会结出10个苹果。苹果成熟的时候,陶陶就会跑去摘苹果。陶陶有个板凳,当她不能直接用手摘到苹果的时候,就会踩到板凳上再试试。
??现在已知10个苹果到地面的高度,以及陶陶把手伸直的时候能够达到的最大高度,请帮陶陶算一下她能够摘到的苹果的数目。假设她碰到苹果,苹果就会掉下来。 Input ??有多组数,每组数由12个整型数组成。第1个整型数表示陶陶将手伸直时能达到的最大高度,第2个整型数表示凳子的高度,后10个整型数表示10个苹果距离地面的高度。 Output ??陶陶能够摘到的苹果数目。 Sample Input 110 30 100 200 150 140 129 134 167 198 200 111
144 33 122 145 187 177 168 154 132 118 148 124 Sample Output 5
9
#includeiostream
using namespace std;
class PG
{
public:
PG(int a,int b):h(a),sH(b){}
int HowMany(int a[10]);
private:
int h,sH;
};
int PG::HowMany(int a[10])
{
int n=0;
int t=h+sH;
for(int i=0;i10;i++)
if(a[i]=t)
n++;
return n;
}
int
您可能关注的文档
- 【2017年整理】Inconel601镍基合金化学成分力学性能介绍.ppt
- 【2017年整理】IGBT基本应用.ppt
- 【2017年整理】Inconel718沉淀硬化镍基高温合金化学成分力学性能.ppt
- 【2017年整理】iG5系列变频器使用说明.doc
- 【2017年整理】Internet基础及应用.ppt
- 【2017年整理】Internet练习题(答案).doc
- 【2017年整理】IOMVARIEDPART-公制-peter.doc
- 【2017年整理】Inmarsat-F和Inmarsat-C船站的维护和检测.doc
- 【2017年整理】IO接口温度控制器报告.doc
- 【2017年整理】IPTV错误代码.doc
文档评论(0)