建议看下灯泡亮不亮,保险丝有没有熔断!还。
您好,三国群英传7周瑜武将编号如下:
1、周瑜:编号001
2、鲁肃:编号002
3、黄盖:编号003
4、吕蒙:编号004
5、陆逊:编号005
6、孙权:编号006
7、孙策:编号007
8、太史慈:编号008
9、甘宁:编号009
10、黄忠:编号010
11、马超:编号011
12、张飞:编号012
13、关羽:编号013
14、赵云:编号014
15、张辽:编号015
16、许褚:编号016
17、庞统:编号017
18、马岱:编号018
19、魏延:编号019
20、徐晃:编号020
21、郭嘉:编号021
22、司马懿:编号022
23、曹操:编号023
24、曹仁:编号024
25、曹植:编号025
26、夏侯惇:编号026
27、夏侯渊:编号027
28、荀彧:编号028
29、荀攸:编号029
30、贾诩:编号030
31、典韦:编号031
32、郝昭:编号032
33、张郃:编号033
34、张角:编号034
35、张宝:编号035
36、黄月英:编号036
37、马良:编号037
38、祝融:编号038
39、马腾:编号039
40、马忠:编号040
41、马倌:编号041
42、马谡:编号042
43、马良:编号043
44、马超:编号044
45、马岱:编号045
46、马腾:编号046
47、马忠:编号047
48、马倌:编号048
49、马谡:编号049
50、马良:编号050
51、马超:编号051
52、马岱:编号052
53、马腾:编号053
54、马忠:编号054
55、马倌:编号055
56、马谡:
int main(){
int count=0;
int array[4];
int a,b,c,d;
while(count!=4)。
{
cin >> a >> b >> c >> d;。
array[count]=(c-a)*(d-b);。
if(array[count]<0)array[count]=0-array[count];。
count++;
}
for(int i=4-1;i>0;i--){。
for(int j=0;j<i;j++){。
if(array[j]>array[j+1]){。
int temp=array[j];。
array[j]=array[j+1];。
array[j+1]=temp;。
}
}
}
for(count=0;count<4;count++){。
cout << array[count] << endl;。
}
return 0;
题目要求就是输入4组数?不是的话我再改 。
int main(){
vector<int> vec;。
int a,b,c,d;
while(cin >> a >> b >> c >> d){。
int temp=(c-a)*(d-b);。
if(temp<0)。
temp=0-temp;。
vec.push_back(temp);。
}
vector<int>::size_type len=vec.size();。
for(vector<int>::size_type i=len-1;i!=0;i--){。
for(vector<int>::size_type j=0;j<i;j++){。
if(vec[j]>vec[j+1]){。
int temp=vec[j];。
vec[j]=vec[j+1];。
vec[j+1]=temp;。
}
}
}
for(vector<int>::size_type ix=0;ix<len;ix++){。
cout << vec[ix] << endl;。
}
return 0;
这个
我下午才看的书,现学现写的..。