zoukankan      html  css  js  c++  java
  • 重写了博客上的代码着色脚本


    目前支持 Delphi、C#、C/C++, 以后我学到什么会让它支持什么; 欢迎你也使用.

    使用方法:
    首先在 HTML 的 <head> 和 </head> 之间加上:

    然后:


    样例:


    样例效果:
    //Delphi 代码:
    program Project1;
    
    {$APPTYPE CONSOLE}
    
    uses
      SysUtils;
    
    begin
      try
        Writeln('Delphi 2009');
        Readln;
      except
        on E:Exception do
          Writeln(E.Classname, ': ', E.Message);
      end;
    end.
    
    //C# 代码:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.WriteLine("Visual C# 2008");
                Console.ReadLine();
            }
        }
    }
    
    //C/C++ 代码:
    //---------------------------------------------------------------------------
    
    #include 
    #pragma hdrstop
    
    #include 
    //---------------------------------------------------------------------------
    
    #pragma argsused
    int _tmain(int argc, _TCHAR* argv[])
    {
        printf("C++Builder 2009");
        getchar();
        return 0;
    }
    //---------------------------------------------------------------------------
    

  • 相关阅读:
    【题解】国家集训队礼物(Lucas定理)
    【题解】佳佳的斐波那契数列(矩阵)
    【题解】Zap(莫比乌斯反演)
    HNOI2019爆零记
    Emacs配置
    【题解】Journeys(线段树优化连边)
    一直没有敢发的NOIP2018游记
    【题解】Digit Tree
    【题解】BZOJ3489 A Hard RMQ problem(主席树套主席树)
    【题解】大括号
  • 原文地址:https://www.cnblogs.com/del/p/1364357.html
Copyright © 2011-2022 走看看