任志启嘉
任志启嘉
全部文章
分类
笔记Note(23)
题解(2)
归档
标签
去牛客网
登录
/
注册
有趣,有料
是小白一枚啦
全部文章
(共25篇)
C++程序设计:1.05
#include<iostream> using namespace std; int main() { cout<<(9.5*4.5-2.5*3)/(45.5-3.5)<<endl; return 0; }
C++
2023-02-28
0
300
C++程序设计:1.04
#include<iostream> using namespace std; int main() { cout<<"a a^2 a^3\n"; cout<<"1 1 1\n"; cout<<"2 ...
C++
2023-02-28
0
243
C++程序设计:1.03
#include<iostream> using namespace std; int main() { cout<<" CCCC + + "<<endl; cout<<" C + + "&...
C++
2023-02-28
0
344
C++程序设计:1.02
#include<iostream> using namespace std; int main() { int i; for(i=5;i>0;i--){ cout<<"Welcome to C++"<<endl; } return 0; }
C++
2023-02-28
0
207
C++程序设计:1.01
#include<iostream> using namespace std; int main() { cout<<"Welcome to C++\n"; cout<<"Welcome to Computer Science\n"; cout<<...
C++
2023-02-28
0
278
C++:求阶乘
题目描述 x 的阶乘,即= x * (x-1) * (x-2) * ··· * 2 * 1。 输入一个整数 m,计算并输出其阶乘的值。 输入格式 一个整数。 输出格式 一个整数。 输入输出样例 输入 4 输出 24 说明 m = 4, m! = 4! = 4 * 3 * 2 * 1 = 24。 提示...
C++
2023-02-26
0
711
C++:应声虫
题目描述 传说唐、宋时有人患怪病,腹内生虫;人说话,虫即小声应之,是为应声虫。现在你可以用程序实现一个应声虫吗? 从测试集获取输入内容,并打印输入的内容。 输入输出格式 输入格式 一行字符串。 输出格式 一行字符串。 输入输出样例 输入 hello world! 输出 hello world! 参考...
C++
2023-02-26
0
739
第四个C++程序:ComputeAreaWithConsoleInput
#include<iostream> using namespace std; int main() { double r, s; cout << "Please input the radius:" ; cin >> r; s = r * r * 3...
C++
2023-02-23
0
256
第三个C++程序:ComputeExpression
#include<iostream> using namespace std; int main() { cout << "(10.5+2*3)/(45-3.5)="; cout << (10.5 + 2 * 3) / (45 - 3.5) << ...
C++
2023-02-22
0
228
第二个C++程序:Welcome With ThreeMessages
#include<iostream> using namespace std; int main() { cout<< "Programming is fun!" <<endl; cout<< "Fundmentals First" <<...
C++
2023-02-22
0
219
首页
上一页
1
2
3
下一页
末页