摘要:
#include<iostream> #include<cmath> using namespace std; typedef long long ll; int start, len;//序列开始因子和连续因子个数 int main() { cin.tie(0); ll N; cin >> N; 阅读全文
摘要:
4.第四题 5分 #include<iostream> using namespace std; int main(){ float f;//输入的华氏温度 cin>>f; float c; c=5*(f-32)/9; cout<<"Celsius = "<<(int)c<<endl; return 阅读全文
摘要:
今天打了会PTA上的题,剩余时间看了会大道至简 网课看了Array类的使用和冒泡排序 1.第一题 5分 #include<iostream> using namespace std; int main() { cout << "Hello World!"; return 0; } 2.第二题 18分 阅读全文
摘要:
今天看了数组的实践内容的二维数组的介绍 阅读全文
摘要:
考完科目一了还没开始练车比较闲,今天基本上都在看大道至简的刷视频 网课看了数组定义声明和介绍,看了数组内存占据的讲解,没有打代码 阅读全文