第一章编程题
2022/2/14 14:11:50
本文主要是介绍第一章编程题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1
#include<iostream> using namespace std; int main() { cout<<"name: \nAddress: UESTC"; return 0; }
2
#include<iostream> using namespace std; int convert(int n); int main() { int n; cin >> n; cout<< n <<" long = "<<convert(n)<<endl; return 0; } int convert(int n) { return 220 * n; }
3
#include<iostream> using namespace std; void mice() { cout<<"Three blind mice\n"; } void amination() { cout<<"See how they run\n"; } int main() { mice();mice(); amination();amination(); return 0; }
4
#include<iostream> using namespace std; int main() { cout<<"Enter your age: "; int age = 0; cin>>age; cout<<"Your age in months is "<<12*age<<".\n"; return 0; }
5
#include<iostream> using namespace std; float cconvertf(int c); int main() { cout<<"Please enter a Celsius value: "; int Celsius = 0; cin>>Celsius; cout<<Celsius<<" degrees Celsius is "<<cconvertf(Celsius)<<" degrees Fahrenheit."; return 0; } float cconvertf(int c) { return (1.8 * c + 32.0); }
6
#include<iostream> using namespace std; long long lconverta(float l); int main() { cout<<"Enter the number of light years: "; float light = 0; cin>>light; cout<<light<<" light years = "<<lconverta(light)<<" astronomical units."<<endl; return 0; } long long lconverta(float l) { return 63240 * l; }
7
#include<iostream> using namespace std; void showtime(int h, int m); int main() { showtime(9,28); return 0; } void showtime(int h, int m) { cout<<"Time: "<<h<<" : "<<m<<endl; }
这篇关于第一章编程题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28一步到位:购买适合 SEO 的域名全攻略
- 2024-12-27OpenFeign服务间调用学习入门
- 2024-12-27OpenFeign服务间调用学习入门
- 2024-12-27OpenFeign学习入门:轻松掌握微服务通信
- 2024-12-27OpenFeign学习入门:轻松掌握微服务间的HTTP请求
- 2024-12-27JDK17新特性学习入门:简洁教程带你轻松上手
- 2024-12-27JMeter传递token学习入门教程
- 2024-12-27JMeter压测学习入门指南
- 2024-12-27JWT单点登录学习入门指南
- 2024-12-27JWT单点登录原理学习入门