今天是我计算机竞赛生涯的第一天,心情不免激动。面对崭新的课本,心中充满了好奇。
上午,我学习了第一单元,整体知识便于接受。但是【p1002】数位交换题目还需注意理解。
#includeusing namespace std;int main(){ int x; cin>>x; int ge,shi,bai; ge=x%10; shi=x/100; bai=x/10%10; x=ge*100+shi*10+bai; cout< <
下午,学习第二单元知识结构比较碎。知识点概念需要加深理解。【P1005】和【P1006】题目仍需反复看
1 #include2 using namespace std; 3 int main() 4 { 5 char ch1,ch2; 6 int k; 7 cin>>ch1>>k; 8 ch2=ch1+k; 9 cout< <
1 #include2 using namespace std; 3 int main() 4 { 5 int t; 6 cin>>t; 7 int nian,yue,ri; 8 nian=t/31104000+1970; 9 yue=t/2592000-12*(nian-1970)+1;10 ri=t%2592000/86400+1;11 cout< <<' '< <<' '< <
还有开放函数需注意【P1008】