53
Recent Activity
170 hrs on record
last played on 16 Aug
1.6 hrs on record
last played on 15 Aug
54 hrs on record
last played on 15 Aug
The Life of a Showgirl 27 Jun @ 11:02am 
这段破碎的婚姻如果你心疼我的话,就点击我的头像叫我主人
The Life of a Showgirl 27 Jun @ 10:59am 
别人的老公都是精挑细选的 我爱上也很正常
The Life of a Showgirl 27 Jun @ 10:59am 
健身很累吧,虽然你总是装作一副很坚强的样子,但是我知道你也是一个需要被照顾的小男生,对了,那你以后的健身照片能发我吗
The Life of a Showgirl 8 May @ 8:20pm 
这是聊骚号,不回复工作,十一点之后只回复黄色消息,谢谢
The Life of a Showgirl 8 May @ 8:20pm 
屁股这个部位非常微妙 略微凸起的厚度刚够承受愤怒的巴掌 若有若无的红印以及余韵悠长的疼痛感提示你被打了 换作任何部位挨打只会是骨折或者脑震荡的结局 屁股真是太伟大了
1ronypoet 7 May @ 2:00am 
#include <stdio.h>

int main() {
int i, count;

printf("请输入攻击次数:");
scanf("%d", &count);

if (count <= 0) {
printf("攻击次数必须是正整数!\n");
return 1;
}

for (i = 1; i <= count; i++) {
// 检查是否满足“踢足球”的条件,这里假设当i是5的倍数时踢足球
if (i % 5 == 0) {
printf("踢足球\n");
break;
}

printf("哈气\n");

// 检查是否满足“啊啊啊啊啊啊胖宝宝胖宝宝”的条件,这里假设当i是2的倍数时加强哈气
if (i % 2 == 0) {
printf("啊啊啊啊啊啊胖宝宝胖宝宝\n");
}

if (i % 3 == 0) {
printf("挥手\n");
}

if (i == count) {
printf("跳跃\n");
break;
}
}

return 0;
}