与其后悔当初,不如把握当下
这里用到了一个穷字,乃 ‘穷其一生去求索’ 的意思,当然,也代表了我的真实写照:穷!
你永远赚不到超出你认知范围外的钱,就算赚到了,也往往会凭实力亏掉;
你所赚的每一分钱,都是你对这个世界认知的变现;
10亿人民币暂时已经超出了我的认知,再往上我无法想象,所以我们可以把蓝图更加细化一点,如下:
栈是计算机中的一种数据结构,线性表的一种,特点是先进后出;常用在函数传参的实现中;
的确如此
如果你认为教育的成本太高,那你就看看无知的代价;
如果你不去努力奋斗,那你就尝试看看你为贫穷付出的代价,别人能用钱去解决的问题,你将不得不用时间、健康、尊严、甚至生命去解决;
当我们的父母逐渐老去,我们还没有出人头地的时候,你才会发现什么叫无助!大多数人憧憬希望,但是不会为了希望去努力;大多数人讨厌拼命,但是会为了攥在手里的东西去拼命;
所以,为了目标奋斗吧,少年!
答案只有一个,就是 天道酬勤
水能三日不饮,饭可七日不食,然题不可一日不刷
程 序 = 数 据 结 构 + 算 法 程序 = 数据结构 + 算法 程序=数据结构+算法
杠精:我小时候学 1 + 1 的时候花了一年;
作者:吃我一拳!杠精!
HDU 2003 求绝对值
#include
#include
using namespace std;
double R;
int main() {
while (scanf("%lf", &R) != EOF) {
printf("%.2lf\n", fabs(R));
}
return 0;
}
HDU 2026 首字母变大写
#include
using namespace std;
char str[200];
bool isspace(char c) {
return c == ' ' || c == '\t';
}
int main() {
int i;
while (gets(str)) {
bool space = true;
for (i = 0; str[i]; ++i) {
if (!isspace(str[i])) {
if (space) {
space = false;
if (str[i] >= 'a' && str[i] <= 'z') {
str[i] = str[i] - 'a' + 'A';
}
}
}else {
space = true;
}
}
puts(str);
}
}
HDU 2000 ASCII码排序
#include
#include
using namespace std;
char ch[10];
int main() {
while (scanf("%s", ch) != EOF) {
sort(ch, ch + 3);
printf("%c %c %c\n", ch[0], ch[1], ch[2]);
}
return 0;
}
HDU 2081 手机短号
#include
using namespace std;
char str[10000];
int main() {
int t, i;
scanf("%d", &t);
while (t--) {
scanf("%s", str);
printf("6");
for (i = 6; i < 11; ++i) {
printf("%c", str[i]);
}
puts("");
}
return 0;
}
HDU 2031 进制转换
#include
#include
using namespace std;
int val, R;
int sta[100];
void Print(int v) {
if (v >= 10 && v <= 16) {
printf("%c", v - 10 + 'A');
}
else {
printf("%d", v);
}
}
int main() {
int i;
while (scanf("%d %d", &val, &R) != EOF) {
if (val == 0) {
puts("0");
continue;
}
else if (val < 0) {
val = -val;
printf("-");
}
sta[0] = 0;
while (val) {
sta[++sta[0]] = val % R;
val /= R;
}
for (i = sta[0]; i > 0; --i) {
Print(sta[i]);
}
puts("");
}
return 0;
}
HDU 2052 Picture
#include
using namespace std;
int main() {
int n, m;
int i, j;
while (scanf("%d %d", &n, &m) != EOF) {
printf("+");
for (i = 0; i < n; ++i) printf("-");
printf("+\n");
for (i = 0; i < m; ++i) {
printf("|");
for (j = 0; j < n; ++j) printf(" ");
printf("|\n");
}
printf("+");
for (i = 0; i < n; ++i) printf("-");
printf("+\n");
puts("");
}
return 0;
}
如何用一句话判断这个数是不是2的幂?
x & (x - 1);