样例解析_C盘防毒批处理.bat
@echo off
@echo ╔┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉╗
@echo ┋ 心 如 止 水 ┋
@echo ┋ ┋
@echo ┋ DIY 个 性 BAT C 盘 防 毒 批 处 理 ┋
@echo ┋ ┋
@echo ┋ 预防LOGO病毒和网络执法官的批处理! 请相信我们! ┋
@echo ┋ ┋
@echo ┋ ┋
@echo ┋ QQ:24500012 ┋
@echo ┋ ┋
@echo ┋ QQ群:3334143 ┋
@echo ╚┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉╝
@pause
md %systemroot%\0sy.exe
attrib %systemroot%\0sy.exe +S +R +H
md %systemroot%\1sy.exe
attrib %systemroot%\1sy.exe +S +R +H
md %systemroot%\2sy.exe
attrib %systemroot%\2sy.exe +S +R +H
md %systemroot%\3sy.exe
attrib %systemroot%\3sy.exe +S +R +H
md %systemroot%\4sy.exe
attrib %systemroot%\4sy.exe +S +R +H
md %systemroot%\5sy.exe
attrib %systemroot%\5sy.exe +S +R +H
md %systemroot%\6sy.exe
attrib %systemroot%\6sy.exe +S +R +H
md %systemroot%\7sy.exe
attrib %systemroot%\7sy.exe +S +R +H
md %systemroot%\8sy.exe
attrib %systemroot%\8sy.exe +S +R +H
md %systemroot%\9sy.exe
attrib %systemroot%\9sy.exe +S +R +H
md %systemroot%\logo1_.exe
attrib %systemroot%\logo1_.exe +S +R +H
md %systemroot%\logo.exe
attrib %systemroot%\logo.exe +S +R +H
md %systemroot%\logo1.exe
attrib %systemroot%\logo1.exe +S +R +H
md %systemroot%\logo_1.exe
attrib %systemroot%\logo_1.exe +S +R +H
md %systemroot%\rundl132.exe
attrib %systemroot%\rundl132.exe +S +R +H
md %systemroot%\rund1l32.exe
attrib %systemroot%\rundl132.exe +S +R +H
md %systemroot%\rund1132.exe
attrib %systemroot%\rundl132.exe +S +R +H
md %systemroot%\CA_Crash_info.nfo
attrib %systemroot%\CA_Crash_info.nfo
相关文档:
/*
思路:递归算法
前0..cur-1位置上已经排好,当前cur位置取一个和前面都不一样的,然后递归处理后面的。
*/
/* 输出1,2,3,..,n的排列数 */
#include <stdio.h>
#include <assert.h>
#include <malloc.h>
void p(int n)
{
extern void _p(int n, int cur, int *a);
int *a;
a = ......
花费了十天时间,为公司开发了一套简单的网络版的信息管理系统,功能主要有客户信息管理,员工信息管理,常用信息管理(各种信函打印、常用网址/常用电话等),公司简单的财务管理等。把一些点点滴滴的技巧在此记录下来,以备查用。
1.数据绑定。 DataReader 读取数据,用DataTable.Load(IDataReader)方法将数据加载到 DataTable ......
#include "Stdio.h"
#include "Conio.h"
#include
#define size 81
#define lim 5
#define tstr "ABCDEFGH"
void display(char **p,int i);
void display2(char *p[],int i);
void display3(char (*p)[40],int i);
void testint();
int main(void)
{
testint();
getch();
return 0;
}
test1() ......
理解c中的序列点
http://blog.chinaunix.net/u1/42826/showart_364176.html
让我们来看看下面的代码:
int i=7;
printf(”%d\n”, i++ * i++);
你认为会返回什么?56?no。正确答案是返回 49?很多人会问为什么?难道不该打印出56吗?在ccfaq中有非常详尽的解释,根本原因在于c中的序列 ......
在C++中,可以使用多种方法对文件进行操作,如基于C的文件操作、基于C++的文件操作等等;
◆基于C的文件操作
在ANSI C中,对文件的操作分为两种方式,即流式文件操作和I/O文件操作,下面就分别介绍之。
一.流式文件操作
这种方式的文件操作有一个重要的结构FILE,FILE在stdio.h中定义如下:
typedef struct {
i ......