20210531

六级-PRE | 计组-C1-1.2.3 | 实训C++相关

六级-PRE

  • battleground n. 战场;论争的主题;
  • contest n. 比赛,竞赛;(控制权或权力的)争夺;争论,争辩,争执 v. 争取赢得(比赛、选举等);参加(竞争或选举),竞争;争辩,争论;就……提出异议,反驳
  • snail n. 蜗牛;慢性子;
  • wage n. 工资;报酬;代价;报应 v. 进行,发动(运动、战争等);开展
  • creep vi. 爬行;蔓延;慢慢地移动;起鸡皮疙瘩 n. 爬行;毛骨悚然的感觉;谄媚者;非玩家控制的小兵(游戏术语)
  • marsh n. 沼泽,湿地
  • ideal adj. 理想的,完美的;被认为是最好的;完全或相当令人满意的;想象的,假设的;n. 理想;典范,典型;目标,高尚的、有价值的原则或目标;
  • crossbreed v. (使)杂交繁育;杂交繁育 n. (动植物的)杂交品种
  • eliminate vt. 消除;排除
  • embark v. 上船(或飞机);(使)上船(或登记);从事
  • painstaking adj. (不辞)劳苦的,辛苦的;煞费苦心的;苦干的,辛勤的;小心的;n. 苦干,刻苦;勤勉;辛苦;煞费苦心;
  • laborious adj.艰苦的;费劲的;勤劳的
  • ordeal n. 折磨;严酷的考验;痛苦的经验
  • embark vi. 上飞机,上船;着手,从事;vt. 使…上船或飞机;使从事,使着手;投资于;
  • tend to 倾向于,常常,归向,趋于

计组-C1-1.2.3


实训C++相关

/*
string s1; //构造一个空的string类对象 s1
string s2="hello world"; //定义并初始化
string s3("hello world"); //用C语言格式字符串构造string类对象
string s4(10, 'a'); // 用10个字符'a'构造string对象s4
string s5(s2); //拷贝构造s5
string s6(s3,6); //用s3中下标为6开始的字符串构造string对象s6
*/
#include <iostream>
using namespace std;
int main()
{
int a = 49, b=49;
char c = 50;
string s1 = "haha";
string s2(s1);
string s3("hello world");
string s4(10, 'a');
string s5(s2);
string s6(s3,6);
cin >> c >> a >> b;
cout <<"hello world" << endl;
printf("a:%c,b:%c\n",a,b);
cout << "a:" << a << ",b:" << b << ",c:" << c << endl;
cout << s1 << endl;
cout << s2 << endl;
cout << s3 << endl;
cout << s4 << endl;
cout << s5 << endl;
cout << s6 << endl;
return 0;
}