猫史档案馆


好吃的培根

好吃的培根

Lv.1

我们人体就是一台电脑,大脑是主机......

获赞:465收藏:158浏览:5320作品收藏:277

签名:https://shequ.codemao.cn/work/172305931 看看我的作品,求求了!!!!! https://shequ.codemao.cn/work/191166025 一键三连,还有主页的作品。 QAQ TAT 求求了!

回复帖子评论
上一页1 页 / 共 2下一页

如何制作出精美的残影效果(含2种-适合萌新,大佬勿喷) 中回复

耳环

2022-10-28T20:26:39 点赞:0

如何制作出精美的残影效果(含2种-适合萌新,大佬勿喷) 中回复

而不额二表哥额半个人根本而不额二表哥

2022-10-28T20:27:02 点赞:0

kitten的信息共享——联机 中回复

emotion_编程猫_加油可以

2022-11-24T18:37:10 点赞:0

kitten的信息共享——联机 中回复

@第三部

切换造型怎么搞?

2022-11-24T18:37:48 点赞:0

工作室3.5版,正式出炉! 中回复

怎么让市长加入你?

2022-11-26T20:25:22 点赞:0

【来发广告吧!】BY 黑客AI(免费提供广告、公告展示!) 中回复

emotion_编程猫_伤心

2022-11-26T20:27:05 点赞:0

【CoCo V1.19版本更新】终于可以自定义启动图了!不许再吐槽了哈(bushi) 中回复

1.19怎么听的有点耳熟?emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼emotion_编程猫_翻白眼

2022-12-16T19:25:46 点赞:0

源码精灵兑换码!要的赶紧来! 中回复

c0d3ma0

2022-12-18T13:27:30 点赞:0

【求源码精灵兑换码!!!速来】 中回复

c0d3ma0

2022-12-18T13:27:43 点赞:0

求最的新源码精灵兑换码 中回复

tiger2022

 

2022-12-18T13:35:06 点赞:0

【CoCo V1.19版本更新】终于可以自定义启动图了!不许再吐槽了哈(bushi) 中回复

emotion_编程猫_翻白眼

2022-12-19T17:28:09 点赞:0

Windows系统,哈。 中回复

emotion_编程猫_点赞

2022-12-19T21:06:00 点赞:0

c++教程2【猜数游戏(从1的升级) 中回复

#include<bits/stdc++.h>
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a,b,c;//a要2的数,b商,c余数(得数)
cin>>a;
for(a;b!=1;a--) {
c=a%2;
b=a/2;
a=b;
}
cout<<c;
return 0;
}

emotion_编程猫_厉害了

正好,C++

2022-12-19T21:20:15 点赞:0

c++教程2【猜数游戏(从1的升级) 中回复

#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
void Start();
void GetResults();
int i, j, life, maxrand;
char c;
void Start() {
i = 0;
j = 0;
life = 0;
maxrand = 6;
cout << "Select difficulty mode:\n";// the user has to select a difficutly level
cout << "1 : Easy (0-15)\n";
cout << "2 : Medium (0-30)\n";
cout << "3 : Difficult (0-50)\n";
cout << "or type another key to quit\n";
c = 30;

cin >> c; // read the user's choice
cout << "\n";

switch (c) {
case '1':
maxrand = 15; // the random number will be between 0 and maxrand
break;
case '2':
maxrand = 30;
break;
case '3':
maxrand = 50;
break;
default:
exit(0);
break;
}

life = 5; // number of lifes of the player
srand((unsigned)time(NULL)); // init Rand() function
j = rand() % maxrand; // j get a random value between 0 and maxrand

GetResults();
}

void GetResults() {
if (life <= 0) { // if player has no more life then he loses
cout << "You lose !\n\n";
Start();
}

cout << "Type a number: \n";
cin >> i;

if((i>maxrand) || (i<0)) { // if the user number isn't correct, restart
cout << "Error: number not between 0 and \n" << maxrand;
GetResults();
}

if(i == j) {
cout << "YOU WIN!\n\n"; // the user found the secret number
Start();
} else if(i>j) {
cout << "Too BIG\n";
life = life - 1;
cout << "Lives remaining: " << life << "\n\n";
GetResults();
} else if(i<j) {
cout << "Too SMALL\n";
life = life - 1;
cout << "Lives remaining: " << life << "\n\n";
GetResults();
}
}

int main() {
cout << "** Jackpot game **\n";
cout << "The goal of this game is to guess a number.\n";
cout << "Jackpot will tell you if the number is too big or too\n";
cout << "喵all compared to the secret number to find.\n\n";
Start();
return 0;
}

2022-12-19T21:22:54 点赞:0

快来吸欧气 中回复

#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
void Start();
void GetResults();
int i, j, life, maxrand;
char c;
void Start() {
i = 0;
j = 0;
life = 0;
maxrand = 6;
cout << "Select difficulty mode:\n";// the user has to select a difficutly level
cout << "1 : Easy (0-15)\n";
cout << "2 : Medium (0-30)\n";
cout << "3 : Difficult (0-50)\n";
cout << "or type another key to quit\n";
c = 30;

cin >> c; // read the user's choice
cout << "\n";

switch (c) {
case '1':
maxrand = 15; // the random number will be between 0 and maxrand
break;
case '2':
maxrand = 30;
break;
case '3':
maxrand = 50;
break;
default:
exit(0);
break;
}

life = 5; // number of lifes of the player
srand((unsigned)time(NULL)); // init Rand() function
j = rand() % maxrand; // j get a random value between 0 and maxrand

GetResults();
}

void GetResults() {
if (life <= 0) { // if player has no more life then he loses
cout << "You lose !\n\n";
Start();
}

cout << "Type a number: \n";
cin >> i;

if((i>maxrand) || (i<0)) { // if the user number isn't correct, restart
cout << "Error: number not between 0 and \n" << maxrand;
GetResults();
}

if(i == j) {
cout << "YOU WIN!\n\n"; // the user found the secret number
Start();
} else if(i>j) {
cout << "Too BIG\n";
life = life - 1;
cout << "Lives remaining: " << life << "\n\n";
GetResults();
} else if(i<j) {
cout << "Too SMALL\n";
life = life - 1;
cout << "Lives remaining: " << life << "\n\n";
GetResults();
}
}

int main() {
cout << "** Jackpot game **\n";
cout << "The goal of this game is to guess a number.\n";
cout << "Jackpot will tell you if the number is too big or too\n";
cout << "喵all compared to the secret number to find.\n\n";
Start();
return 0;
}

2022-12-19T21:24:35 点赞:0

关于新兑换码。。。。。 中回复

#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
void Start();
void GetResults();
int i, j, life, maxrand;
char c;
void Start() {
i = 0;
j = 0;
life = 0;
maxrand = 6;
cout << "Select difficulty mode:\n";// the user has to select a difficutly level
cout << "1 : Easy (0-15)\n";
cout << "2 : Medium (0-30)\n";
cout << "3 : Difficult (0-50)\n";
cout << "or type another key to quit\n";
c = 30;

cin >> c; // read the user's choice
cout << "\n";

switch (c) {
case '1':
maxrand = 15; // the random number will be between 0 and maxrand
break;
case '2':
maxrand = 30;
break;
case '3':
maxrand = 50;
break;
default:
exit(0);
break;
}

life = 5; // number of lifes of the player
srand((unsigned)time(NULL)); // init Rand() function
j = rand() % maxrand; // j get a random value between 0 and maxrand

GetResults();
}

void GetResults() {
if (life <= 0) { // if player has no more life then he loses
cout << "You lose !\n\n";
Start();
}

cout << "Type a number: \n";
cin >> i;

if((i>maxrand) || (i<0)) { // if the user number isn't correct, restart
cout << "Error: number not between 0 and \n" << maxrand;
GetResults();
}

if(i == j) {
cout << "YOU WIN!\n\n"; // the user found the secret number
Start();
} else if(i>j) {
cout << "Too BIG\n";
life = life - 1;
cout << "Lives remaining: " << life << "\n\n";
GetResults();
} else if(i<j) {
cout << "Too SMALL\n";
life = life - 1;
cout << "Lives remaining: " << life << "\n\n";
GetResults();
}
}

int main() {
cout << "** Jackpot game **\n";
cout << "The goal of this game is to guess a number.\n";
cout << "Jackpot will tell you if the number is too big or too\n";
cout << "喵all compared to the secret number to find.\n\n";
Start();
return 0;
}

2022-12-19T21:24:49 点赞:0

离谱吗?(源码精灵道具商城) 中回复

emotion_编程猫_点赞

2022-12-19T21:25:50 点赞:0

Windows系统,哈。 中回复

center_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_image

2022-12-21T20:54:10 点赞:0

关于新兑换码。。。。。 中回复

yesemotion_编程猫_点赞

2022-12-24T15:32:52 点赞:0

【求代码师】 中回复

网址?emotion_编程猫_翻白眼

2022-12-27T15:30:43 点赞:0

好看的按钮UI素材 中回复

center_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_imagecenter_image

2022-12-28T13:07:12 点赞:0

【CoCo V1.20版本更新】冲刺!2022年最后一次更新! 中回复

熊出没奇幻空间的COCO503号“小铁”:?

2023-01-26T22:28:47 点赞:0

【爵士的简单易懂的C++ OI教程】数论问题全面详解 中回复

########################## ?tê???μ? ###################################
ó??éìáê?£oA=1,J=11,Q=12,K=13
????3???3éμ?μ?μúò???£o

2023-02-24T15:01:07 点赞:0

啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊! 中回复

今天center_image

emotion_编程猫_嗨起来

2023-03-19T20:47:56 点赞:0

【CoCo V1.21版本更新】叮叮叮~ 云存储控件大升级!快来围观! 中回复

我的世界都才1.20,你就21了?

猫酱说:

emotion_编程猫_耍赖

2023-04-07T12:25:41 点赞:0

如何用C++做99乘法表? 中回复

我的小号有点捣乱......我要揍ta

2023-06-04T10:49:35 点赞:0

如何制作出精美的残影效果(含2种-适合萌新,大佬勿喷) 中回复

看看我的作品,求求了!!!!!
https://shequ.codemao.cn/work/191166025
一键三连,还有主页的作品。
QAQ TAT 求求了!emotion_星能猫_爱你emotion_编程猫_溜了溜了emotion_编程猫_谢谢老板emotion_编程猫_加油emotion_编程猫_点赞

2023-08-21T20:04:27 点赞:2

如何制作出精美的残影效果(含2种-适合萌新,大佬勿喷) 中回复

看看我的作品,求求了!!!!!
https://shequ.codemao.cn/work/191166025
一键三连,还有主页的作品。
QAQ TAT 求求了!

2023-08-21T20:04:32 点赞:1

求招人 (Windows微软Microsoft公司) 中回复

看看我的作品,求求了!!!!!
https://shequ.codemao.cn/work/191166025
一键三连,还有主页的作品。
QAQ TAT 求求了! 

2023-08-25T11:17:43 点赞:0

【Kitten N公测更新】移动端横版来了,画板还会远吗? 中回复

Scratch:声音?我也这样!emotion_编程猫_翻白眼

2023-09-01T20:58:05 点赞:3