首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴静夜思的代码贴全部
dsfdsfdsf
阅读全部 | 2022年7月9日 12:20
#include <stdio.h>

int main()
{
    int price=0;
    
    printf("请输入金额(元)");
    scanf("%d",&price);
    
    int change=100-price;
    
    printf("找您%d元\n",change);
......................
阅读全部 | 2022年5月24日 17:55
# -*- coding:utf-8 -*-

import socket
from time import ctime, sleep
import threading


class ChatRoomPlus:
    def __init__(self):
        # 全局参数配置
        self.encoding = "utf-8"  # 使用的编码方式
        self.broadcastPort = 7788   # 广播端口
......................
阅读全部 | 2021年4月6日 20:29
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import os
import sys
import time

def get_remote_status():
    l = os.popen('ssh root@remote.com "cd /var/www/mysite; git st"').readlines()
    s = ''.join(l)
    return s

......................
阅读全部 | 2018年9月11日 10:29
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;

......................
阅读全部 | 2017年9月30日 11:36
<?php

$folder1 = "C:/Users/Administrator/Documents/Visual Studio 2015/Projects/vb-china/vb-china/";
$folder2 = "Z:/vb-china/";

$subdirs = ['Content','Scripts','Views','Areas/Admin/Views'];


# 只需要设置上面的3项,下面的就不用设置了


recursiveDelete($folder2);  //每次开始前先清空从文件夹,此行可酌情屏蔽掉
......................
阅读全部 | 2016年11月16日 15:34
<?php

$folder1 = "C:/Users/Administrator/Documents/Visual Studio 2015/Projects/vb-china/vb-china/";
$folder2 = "Z:/vb-china/";

$subdirs = ['Content','Scripts','Views'];


# 只需要设置上面的3项,下面的就不用设置了

$files_dict_seri = __DIR__.'/files_dict.seri';

......................
阅读全部 | 2016年11月16日 07:16
class Out {
class In {
public In(String msg) {
System.out.println(msg);
}
}
}

public class SubClass extends Out.In {
public SubClass(Out out, String arg) {
out.super(arg);
}
......................
阅读全部 | 2016年2月17日 03:24
//
public static boolean deleteDirectory(File path) {
if (path.exists()) {
File[] files = path.listFiles();
if (files == null) {
return true;
}
for (File file : files) {
if (file.isDirectory()) {
deleteDirectory(file);
} else {
file.delete();
......................
阅读全部 | 2014年9月16日 17:51
Toast toast = Toast.makeText(getActivity(), "sldjfasdkjf", Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.show();
阅读全部 | 2014年9月16日 14:02
1 2 3 4 5 6 下一页
静夜思