鱼C论坛

 找回密码
 立即注册
楼主: heidern0612

[新手教程] 如何在帖子中插入图片和使用代码段

  [复制链接]
发表于 2023-11-28 11:28:51 | 显示全部楼层
#用python设计第一个游戏
temp = input("不妨猜一下我心中想的是哪一个数字")
guess = int(temp)
if guess == 8:
    print("你真棒")
    print("但是没奖励")
else:
    print("猜错了,我心中想的是8!")
print("游戏结束")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-28 11:26:03 | 显示全部楼层
#这是我第一次尝试发代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-27 11:49:11 | 显示全部楼层
我来试试发代码。
import random
print("这是一个猜数字游戏,你可以输入1到100之间的数字,但只有五次机会")
n=random.randint(1,100)
for i in range(5):
    if i==0:
        m=int(input('开始猜吧,请输入一个1到100之间的整数:'))
    else:
        m=int(input('再猜一次:'))
    if m==n:
        print("恭喜你,猜对啦!")
        break
    elif m>n:
        print("你猜的太大了!")
    else:
        print("你猜的太小了!")
else:
    print("很遗憾,游戏结束")
    print("正确答案是:",n,"继续努力吧~")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-18 10:03:40 | 显示全部楼层

请问你是用第二种发的代码吗,能较一下怎么用吗,难道不是在代码两边用英文[]中括号吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-18 10:00:52 | 显示全部楼层
还是不会发代码救命
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-18 09:58:19 | 显示全部楼层
[我是想要插入的代码]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-7 11:25:56 | 显示全部楼层
小甲鱼在干啥
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-24 14:36:28 | 显示全部楼层
print('hello  world!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2023-10-20 17:30:19 | 显示全部楼层
[code]hello world[code]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-18 11:20:43 | 显示全部楼层
#include "stdio.h"
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-18 11:20:03 | 显示全部楼层
[code]#include "stdio.h"[code]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-17 16:46:23 | 显示全部楼层
 Hello World #调试代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-10 12:35:23 | 显示全部楼层
# includ <stdio.h>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-9 23:12:00 | 显示全部楼层
Thanks to FishC
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2023-9-11 17:13:53 | 显示全部楼层
本帖最后由 离柒 于 2023-9-11 17:18 编辑

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-8-22 09:29:22 | 显示全部楼层
好帖捏
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-8-21 20:59:53 | 显示全部楼层
#include <io.h>
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX        256

long total;

int countLines(const char *filename);
void findAllCodes(const char *path);
void findALLFiles(const char *path);

int countLines(const char *filename)
{
        FILE *fp;
        int count = 0;
        int temp;
        
        if ((fp = fopen(filename, "r")) == NULL) 
        {
                fprintf(stderr, "Can not open the file:%s\n", filename);
                return 0;
        }
        
        while ((temp = fgetc(fp)) != EOF)
        {
                if (temp == '\n')
                {
                        count++;
                }
        }
        
        fclose(fp);
        
        return count;
}

void findAllCodes(const char *path)
{
        struct _finddata_t fa;
        long handle;
        char thePath[MAX], target[MAX];
        
        strcpy(thePath, path);
        if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
        {
                do
                {
                        sprintf(target, "%s/%s", path, fa.name);
                        total += countLines(target);
                }while (_findnext(handle, &fa) == 0);
        }
    
        _findclose(handle);
}

void findALLDirs(const char *path)
{
        struct _finddata_t fa;
        long handle;
        char thePath[MAX];
        
        strcpy(thePath, path);
        if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
        {
                fprintf(stderr, "The path %s is wrong!\n",path);
                return;
        }
    
        do
        {        
                if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                    
                if( fa.attrib == _A_SUBDIR)
                {        
                        sprintf(thePath, "%s/%s", path, fa.name);
                        findAllCodes(thePath);
                        findALLDirs(thePath);
                }
        }while (_findnext(handle, &fa) == 0);
    
        _findclose(handle);   
}

int main()
{
        char path[MAX] = ".";
        
        printf("计算中...\n");
        
        findAllCodes(path);
        findALLDirs(path);
        
        printf("目前你总共写了 %ld 行代码!\n\n", total);
        system("pause");
        
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-8-5 10:27:14 | 显示全部楼层
>>> print("\"life is short,let's learn Python\"")
"life is short,let's learn Python"
>>> print("\"life is short,let\'s learn Python\"")
"life is short,let's learn Python"
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-8-5 10:26:24 | 显示全部楼层
(>>> print("\"life is short,let's learn Python\"")
"life is short,let's learn Python"
>>> print("\"life is short,let\'s learn Python\"")
"life is short,let's learn Python")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-7-24 22:46:49 | 显示全部楼层
代码尝试。。
print('Hello,world!')
for i in range(4):
    print(i)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 13:30

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表