boys like girls 《GO 》的中文歌词意思

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了boys like girls 《GO 》的中文歌词意思相关的知识,希望对你有一定的参考价值。

参考技术A Boys
Like
Girls
-
Go
中文——
男生爱女生
心里有了小小的变化
坚持在黑暗中点一盏微弱的铅华
期盼有一天也许你会发现
你已走得太远
这些年来你总是在躲闪
荒废了时日,形容憔悴
我总是抱着那样的希望
有一天你能勇敢面对你的恐惧
是啊,我知道那不简单
我明白那对你有多难
你看那城市的街灯
打起精神向前看
抓住机会记得要坚强一点
否则你只能虚度年华
不要回头,一直向前
深呼吸然后继续往前走
否则你只能虚度光阴
否则白驹过隙,你已老去
要记得车到山前必有路
要记得你一定会好起来
是的,我知道你做得到
因为我始终相信你
所以让我们为自己战斗
让我们行动起来
尽你所能
你就能得到
是的,我知道这不容易
我知道那对你很难
是的,世界并不都是美丽
打起精神向前看
抓住每一次机会,要变得坚强
否则你只能等待年华老去
别回头,就向前走
深呼吸,继续走
否则你只能虚度光阴
白驹过隙,你早已老去
别浪费时间知道意识到电话响起,
你还在苦苦等待吗?
让我来告诉你,
适可而止吧
别再守候,深深的呼吸
别再等我归来
打起精神向前看
抓住每一次机会,要变得坚强
否则你只能等待年华老去
别回头,就向前走
深呼吸,继续走
否则你只能虚度光阴
打起精神向前看
抓住每一次机会,要变得坚强
否则你只能等待年华老去
别回头,就向前走
深呼吸,继续走
否则你只能虚度光阴
白驹过隙,你早已老去

1036 Boys vs Girls

This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students.

Input Specification:

Each input file contains one test case. Each case contains a positive integer N, followed by N lines of student information. Each line contains a student‘s namegenderID and grade, separated by a space, where name and ID are strings of no more than 10 characters with no space, gender is either F (female) or M (male), and grade is an integer between 0 and 100. It is guaranteed that all the grades are distinct.

Output Specification:

For each test case, output in 3 lines. The first line gives the name and ID of the female student with the highest grade, and the second line gives that of the male student with the lowest grade. The third line gives the difference grade?F??−grade?M??. If one such kind of student is missing, output Absent in the corresponding line, and output NA in the third line instead.

Sample Input 1:

3
Joe M Math990112 89
Mike M CS991301 100
Mary F EE990830 95
 

Sample Output 1:

Mary EE990830
Joe Math990112
6
 

Sample Input 2:

1
Jean M AA980920 60
 

Sample Output 2:

Absent
Jean AA980920
NA

题意:

  找出女生的最高成绩和男生的最低成绩,并输出两者之差。

思路:

  模拟

Code:

 1 #include <bits/stdc++.h>
 2 
 3 using namespace std;
 4 
 5 struct Stu {
 6     string name;
 7     char gender;
 8     string id;
 9     int grade;
10 };
11 
12 bool cmp1(Stu s1, Stu s2) { return s1.grade < s2.grade; }
13 
14 bool cmp2(Stu s1, Stu s2) { return s1.grade > s2.grade; }
15 
16 int main() {
17     int n;
18     cin >> n;
19     vector<Stu> male, female;
20     for (int i = 0; i < n; ++i) {
21         string name, id;
22         char gender;
23         int grade;
24         cin >> name >> gender >> id >> grade;
25         if (gender == F)
26             female.push_back({name, gender, id, grade});
27         else
28             male.push_back({name, gender, id, grade});
29     }
30     sort(female.begin(), female.end(), cmp2);
31     sort(male.begin(), male.end(), cmp1);
32     if (female.size() > 0)
33         cout << female[0].name << " " << female[0].id << endl;
34     else
35         cout << "Absent" << endl;
36     if (male.size() > 0)
37         cout << male[0].name << " " << male[0].id << endl;
38     else
39         cout << "Absent" << endl;
40     if (female.size() > 0 && male.size() > 0)
41         cout << female[0].grade - male[0].grade << endl;
42     else
43         cout << "NA" << endl;
44     return 0;
45 }

 

以上是关于boys like girls 《GO 》的中文歌词意思的主要内容,如果未能解决你的问题,请参考以下文章

1036 Boys vs Girls

Boy or Girl

Girls and Boys

1036. Boys vs Girls (25)

Girls and Boys

1036 Boys vs Girls