每天坚持背诵并默写!
we can read of things that happened 5000 years ago in the Near East,where people first learned to write.
But there are some parts of the world where "even now" people cannot write.
The only way that they can preserve their history is to recount it as sagas---
legends that handed down from one generation of storytellers to another.
The legends are useful because they can tell us something about migrations of people "who"lived long ago,but none coule write down what they did.
Anthropologists wondered where the remote ancesters of Polynesian people now living in Pacific islands came from.
Some of their legneds "the sagas of these people"explained that some of them came from Indonesia about 2000 years ago.
But the people who were like ourselves lived so long ago that even their sagas ,if they had any,are fogotten"forgotten".
So archeologists "archaeologists"have neither history nor legends to find out where the first modern man came from.
Fortunately,however,the ancient men made tools of stone,
especially flint,bacause this is easier to shape than other kinds.
They may also have used wood and skins,but these have rotted away.
Stone does not decay,
so the tool of long ago have remained when even the bones of the men who made them have disappeared without trace.
这篇文章有比较多优秀简洁的句式,值得一背。
#include<iostream>
using namespace std;
int s1,s2,s3;
bool flag = 1;
int main()
{
freopen("1.txt","r",stdin);
freopen("2.txt","w",stdout);
int k;cin >> k;
for(int i = 10000;i <= 30000;i++)
{
s1 = i / 100;
s3 = i % 1000;
s2 = (i/10)%1000;
if(s1%k==0&&s2%k==0&&s3%k==0)
{
cout << i <<endl;
flag = 0;
}
}
if(flag)
cout << "NO" ;//实在没想到是因为No打成了NO,太粗心了
}