- #include<iostream>
- using namespace std;
- int main ()
- {
- cout<<"☆★☆《影武的網路商城》☆★☆"<<endl;
- cout<<endl;
- cout<<"〔商品價目表〕"<<endl;
- string list[7]={"Grand Theft Auto 5","H1Z1","Rust","Minecraft","Minecraft stroy:mode","CS:GO","garry's mod"};
- int money[7]={1600,876,328,810,562,528,328};
- for ( int i=0 ; i<7 ; i++)
- {
- cout<<"("<<i+1<<")"<<list[i]<<""<<"\t"<<money[i]<<"元"<<endl;
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |