运行 ❯
获取您的
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <iostream> using namespace std; int main() { // Create variables of different data types int items = 50; double cost_per_item = 9.99; double total_cost = items * cost_per_item; char currency = '$'; // Print variables cout << "Number of items: " << items << "\n"; cout << "Cost per item: " << cost_per_item << "" << currency << "\n"; cout << "Total cost = " << total_cost << "" << currency << "\n"; return 0; }
商品数量:50
每件商品价格:9.99 美元
总价 = 499.5 美元