C C++最全2024-3-25 【STL】【C++,2024年最新BAT大厂面试基础题集合

img
img

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

} while (true);

return 0;

}

求两数的最大公约数

#include

using namespace std;

int main()

{

int n1, n2;

cout << "输入两个整数: ";

cin >> n1 >> n2;

while(n1 != n2)

{

if(n1 > n2)

n1 -= n2;

else

n2 -= n1;

}

cout << "HCF = " << n1;

return 0;

}

以上程序执行输出结果为:

输入两个整数: 78

52

HCF = 26

创建各类三角形图案

#include

using namespace std;

int main()

{

int rows;

cout << "输入行数: ";

cin >> rows;

for(int i = 1; i <= rows; ++i)

{

for(int j = 1; j <= i; ++j)

{

cout << "* ";

}

cout << “\n”;

}

return 0;

}

以上程序执行输出结果为:




#include

using namespace std;

int main()

{

int rows;

cout << "输入行数: ";

cin >> rows;

for(int i = 1; i <= rows; ++i)

{

for(int j = 1; j <= i; ++j)

{

cout << j << " ";

}

cout << “\n”;

}

return 0;

}

以上程序执行输出结果为:

1

1 2

1 2 3

1 2 3 4

1 2 3 4 5

#include

using namespace std;

int main()

{

char input, alphabet = ‘A’;

cout << "输入最后一个大写字母: ";

cin >> input;

for(int i = 1; i <= (input-‘A’+1); ++i)

{

for(int j = 1; j <= i; ++j)

{

cout << alphabet << " ";

}

++alphabet;

cout << endl;

}

return 0;

}

以上程序执行输出结果为:

A

B B

C C C

D D D D

E E E E E

#include

using namespace std;

int main()

{

int rows;

cout << "输入行数: ";

cin >> rows;

for(int i = rows; i >= 1; --i)

{

for(int j = 1; j <= i; ++j)

{

cout << "* ";

}

cout << endl;

}

return 0;

}

以上程序执行输出结果为:




#include

using namespace std;

int main()

{

int rows;

cout << "输入行数: ";

cin >> rows;

for(int i = rows; i >= 1; --i)

{

for(int j = 1; j <= i; ++j)

{

cout << j << " ";

}

cout << endl;

}

return 0;

}

以上程序执行输出结果为:

1 2 3 4 5

1 2 3 4

1 2 3

1 2

1

#include

using namespace std;

int main()

{

int space, rows;

cout <<"输入行数: ";

cin >> rows;

for(int i = 1, k = 0; i <= rows; ++i, k = 0)

{

for(space = 1; space <= rows-i; ++space)

{

cout <<" ";

}

while(k != 2*i-1)

{

cout << "* ";

++k;

}

cout << endl;

}

return 0;

}

以上程序执行输出结果为:





#include

using namespace std;

int main()

{

int rows, count = 0, count1 = 0, k = 0;

cout << "输入行数: ";

cin >> rows;

for(int i = 1; i <= rows; ++i)

{

for(int space = 1; space <= rows-i; ++space)

{

cout << " ";

++count;

}

while(k != 2*i-1)

{

if (count <= rows-1)

{

cout << i+k << " ";

++count;

}

else

{

++count1;

cout << i+k-2*count1 << " ";

}

++k;

}

count1 = count = k = 0;

cout << endl;

}

return 0;

}

以上程序执行输出结果为:

1

2 3 2

3 4 5 4 3

4 5 6 7 6 5 4

5 6 7 8 9 8 7 6 5

#include

using namespace std;

int main()

{

int rows;

cout << "输入行数: ";

cin >> rows;

for(int i = rows; i >= 1; --i)

{

for(int space = 0; space < rows-i; ++space)

cout << " ";

for(int j = i; j <= 2*i-1; ++j)

cout << "* ";

for(int j = 0; j < i-1; ++j)

cout << "* ";

cout << endl;

}

return 0;

}

以上程序执行输出结果为:





#include

using namespace std;

int main()

{

int rows, coef = 1;

cout << "Enter number of rows: ";

cin >> rows;

for(int i = 0; i < rows; i++)

{

for(int space = 1; space <= rows-i; space++)

cout <<" ";

for(int j = 0; j <= i; j++)

{

if (j == 0 || i == 0)

coef = 1;

else

coef = coef*(i-j+1)/j;

cout << coef << " ";

}

cout << endl;

}

return 0;

}

以上程序执行输出结果为:

1

1 1

1 2 1

1 3 3 1

1 4 6 4 1

1 5 10 10 5 1

#include

using namespace std;

int main()

{

img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上C C++开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以戳这里获取

space++)

cout <<" ";

for(int j = 0; j <= i; j++)

{

if (j == 0 || i == 0)

coef = 1;

else

coef = coef*(i-j+1)/j;

cout << coef << " ";

}

cout << endl;

}

return 0;

}

以上程序执行输出结果为:

1

1 1

1 2 1

1 3 3 1

1 4 6 4 1

1 5 10 10 5 1

#include

using namespace std;

int main()

{

[外链图片转存中…(img-cD4GJov0-1715680577256)]
[外链图片转存中…(img-TeHDFyoa-1715680577256)]

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上C C++开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以戳这里获取

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值