8000块电脑配置单标注价格
时间: 2024-10-24 20:01:19 浏览: 8
一台价值8000元左右的电脑配置单标注价格可能看起来像这样:
1. CPU (处理器):Intel Core i5-9400F 或 AMD Ryzen 5 2600X - 这部分的价格约为1200元至1500元,具体取决于品牌和型号的新旧程度。
2. 主板 (Motherboard):华硕B360或技嘉B450 - 中端主板,价格约700元到1000元。
3. 内存 (RAM):金士顿8GB DDR4 2400MHz x 2条 - 总价大约在600元左右。
4. 硬盘 (HDD or SSD):西部数据 WD Blue 1TB HDD 或 Samsung 500GB SSD - 按照容量和速度的不同,SSD一般比HDD贵,大约300元至600元。
5. 显卡 (GPU):Nvidia GeForce GTX 1650或AMD Radeon RX 580 - 高性能入门级显卡,价格约1200元至1500元。
6. 电源 (PSU):航嘉额定500W - 选择可靠的品牌,价格约200元至300元。
7. 机箱 (Case):赛睿Element Q15或贱驴ATX机箱 - 中档机箱,约300元至500元。
8. 显示器 (Monitor):Acer SB270H或BenQ GL2460HM - 24英寸显示器,价格大概在1000元至1500元。
总价加起来大约在5000元至6000元之间,实际价格会因市场变动和促销活动而有所差异。请注意,这只是一个参考范围,具体配置和价格可能会根据需求和品牌的最新情况有所不同。
相关问题
题目描述 小可今天接到了一个重要的任务,就是为可达的办公室采购一批新的设备(新电脑、新显示屏、新键鼠),这批设备给不同的老师的配置也不一样,采购单上标注了 � n 名老师对应的工号和各种设备的采购价格,现在小可想知道,本次采购为哪位老师花费最多,为哪位老师花费最少。 输入格式 输入第一行为一个正整数 � n 接下来 � n 行,每行四个整数,分别是教师工号,新电脑采购价格,新显示屏采购价格,新键鼠采购价格。 输出格式 输出两行 第一行为采购花费最多的老师的工号及花费数额 第二行为采购花费最少的老师的工号及花费数额 输入数据 1 5 30108 48358 1588 500 30408 32487 788 350 30111 68686 3856 799 30000 100000 10000 1000 31435 8999 1228 556 输出数据 1 30000 111000 31435 10783c++
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> teacherIds(n);
vector<int> computerPrices(n);
vector<int> screenPrices(n);
vector<int> mousePrices(n);
for (int i = 0; i < n; i++) {
cin >> teacherIds[i] >> computerPrices[i] >> screenPrices[i] >> mousePrices[i];
}
int maxTeacherId = teacherIds[0];
int minTeacherId = teacherIds[0];
int maxTotalPrice = computerPrices[0] + screenPrices[0] + mousePrices[0];
int minTotalPrice = computerPrices[0] + screenPrices[0] + mousePrices[0];
for (int i = 1; i < n; i++) {
int totalPrice = computerPrices[i] + screenPrices[i] + mousePrices[i];
if (totalPrice > maxTotalPrice) {
maxTotalPrice = totalPrice;
maxTeacherId = teacherIds[i];
}
if (totalPrice < minTotalPrice) {
minTotalPrice = totalPrice;
minTeacherId = teacherIds[i];
}
}
cout << maxTeacherId << " " << maxTotalPrice << endl;
cout << minTeacherId << " " << minTotalPrice << endl;
return 0;
}
阅读全文