沐雨尘枫 发表于 2022-10-15 08:55:00

做个较为简单的东西

<p> 19<a href=" ./20/20px.html " target="_blank">正当防卫</a><a href=" ../zuozhe.html " target="_blank">来源</a> 类型 类型</p>                                          
把上面的数字19,20,20给循环掉
就是写成
<p> 20<a href=" ./21/21px.html " target="_blank">正当防卫</a><a href=" ../zuozhe.html " target="_blank">来源</a> 类型 类型</p>      
      
<p> 21<a href=" ./22/22px.html " target="_blank">正当防卫</a><a href=" ../zuozhe.html " target="_blank">来源</a> 类型 类型</p>
<p> 22<a href=" ./23/23px.html " target="_blank">正当防卫</a><a href=" ../zuozhe.html " target="_blank">来源</a> 类型 类型</p>      
         ……   
……
      
用 c语言,要写入记事本并,要求可循环,不论是现成的软件,还是自己做的,都可以

临时号 发表于 2022-10-15 08:55:01

沐雨尘枫 发表于 2022-10-15 10:50


论坛有BUG,代码模式中显示不了\
我的代码是
#include <stdio.h>

int main()
{
        FILE *f = fopen("test.html","w");
        for (int i=1;i<=50;i++)
        {
                fprintf(f,"<p> %d<a href=\" ./%d/%dpx.html \" target=\"_blank\">正当防卫</a><a href=\" ../zuozhe.html \" target=\"_blank\">来源</a> 类型 类型</p>\n",i,i+1,i+1);
        }
        fclose(f);
        return 0;
}

临时号 发表于 2022-10-15 09:37:12

是这样吗?
#include <stdio.h>

int main()
{
        FILE *f = fopen("test.html","w");
        for (int i=1;i<=50;i++)
        {
                fprintf(f,"<p> %d<a href=\" ./%d/%dpx.html \" target=\"_blank\">正当防卫</a><a href=\" ../zuozhe.html \" target=\"_blank\">来源</a> 类型 类型</p>\n",i,i+1,i+1);
        }
        fclose(f);
        return 0;
}

沐雨尘枫 发表于 2022-10-15 10:14:01

临时号 发表于 2022-10-15 09:37
是这样吗?

你怎么知道我刚好写了50个这样的{:10_256:}
要求输入的文件是名z的txt文件你再改下吧
谢谢

临时号 发表于 2022-10-15 10:37:15

沐雨尘枫 发表于 2022-10-15 10:14
你怎么知道我刚好写了50个这样的
要求输入的文件是名z的txt文件你再改下吧
谢谢

这个很简单改的,至于为什么写了五十个,猜的{:10_256:}
#include <stdio.h>

int main()
{
      FILE *f = fopen("z.txt","w");
      for (int i=1;i<=50;i++)
      {
                fprintf(f,"<p> %d<a href=" ./%d/%dpx.html " target="_blank">正当防卫</a><a href=" ../zuozhe.html " target="_blank">来源</a> 类型 类型</p>\n",i,i+1,i+1);
      }
      fclose(f);
      return 0;
}

沐雨尘枫 发表于 2022-10-15 10:49:51

临时号 发表于 2022-10-15 10:37
这个很简单改的,至于为什么写了五十个,猜的

我就知道在这,可惜怂啊

沐雨尘枫 发表于 2022-10-15 10:50:56

沐雨尘枫 发表于 2022-10-15 10:49
我就知道在这,可惜怂啊

沐雨尘枫 发表于 2022-10-15 11:37:12

临时号 发表于 2022-10-15 10:58
论坛有BUG,代码模式中显示不了\
我的代码是
#include


成功

沐雨尘枫 发表于 2023-6-3 20:20:17

临时号 发表于 2022-10-15 08:55
论坛有BUG,代码模式中显示不了\
我的代码是
#include


???最近怎么不冒怕泡?
页: [1]
查看完整版本: 做个较为简单的东西