每天坚持背诵默写两篇
people are always talking about the probelm of youth ,if there is one–which I take leave to doubt–then it is created by older people not the young themselves.Let’s get down to fundamentals and agree that the young are after all human beings,people just like their elders.There is only one difference between a old man and a young one,the young man has a glorious future before him ,and the old man has a splendid future behind him.Maybe that is where the rub is.
When I was a teenager ,I felt that I was just young and uncertain,that I was a new guy in a huge school,and I would have been very pleased to be regarded as something so interesting as a problem,for one thing ,being a problem give you a sense of identity,and that is one of the things the young are busily engeged in seeking.
I find young people exciting.They have an air of freedom and they have not a dreary committment(commitment) of mean ambitions or love of comfort.They are not anxious social climbers,and they have no devotion for(to) material things.All these seem to me to link them with life,and origins of things.It is as if they were,in some sense,cosmic beings in violent and lovely contrast with us suburban creatures.All that is in my mind when I meet a young person,maybe he is conceited,ill-mannered,presumptuous,or fatutous(fatuous),but I do not turn for protection to dreary cliches about (====) respect for elders,as if mere age were the(a) reason to respect.I accept that we are equal(equals),and I will argue with him,as an equal,if I think he is wrong.
#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,太粗心了
}