<?php
echo send_mail('qq123456@qq.com','发信测试','测试测试测试测试测试测试');
function send_mail($to, $subject = 'No subject', $body) {
$loc_host = "test"; //发信计算机名,可随意
$smtp_acc = "bccn@bccn.net"; //Smtp认证的用户名,类似fuweng@im286.com,或者fuweng
$smtp_pass="12345678"; //Smtp认证的密码,一般等同pop3密码
$smtp_host="smtp.exmail.qq.com"; //SMTP服务器地址,类似 smtp.tom.com
$from="bccn@bccn.net"; //发信人Email地址,你的发信信箱地址
$headers = "Content-Type: text/plain; charset=\"gb2312\"\r\nContent-Transfer-Encoding: base64";
$lb="\r\n"; //linebreak
......................
阅读全部
|
静夜思
贴于 2012年10月13日 00:26
hide
bbsi
\main.c||In function 'main':|
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;
scanf ("%d,%d",&a,&b);
int max(int x,int y);
c=max(a,b);
printf("max=%d\n",c);
......................
阅读全部
|
天剑杀手
贴于 2012年10月11日 19:09
hide
bbsi
package org.com;
import java.util.Scanner;
public class Demo1 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("计算圆的面积和周长:\n1.计算面积\n2.计算周长\n请选择:");
int a = input.nextInt();
System.out.println("请输入半径:");
int b = input.nextInt();
int c = mianji(b);
......................
阅读全部
|
java初学者,
贴于 2012年10月10日 12:11
hide
bbsi
#include "stdio.h"
#define N 9
#define OVERFLOW 0
#define OK 1
int KeyW[N]={4,7,5,9,3,2,6,1,8};
typedef struct LNODE{
int keyword;
......................
阅读全部
|
风之子MIKEY
贴于 2012年10月9日 19:22
hide
bbsi
#include "stdio.h"
#define N 9
#define OVERFLOW 0
#define OK 1
int KeyW[N]={4,7,5,9,3,2,6,1,8};
typedef struct LNODE{
int keyword;
......................
阅读全部
|
a10086
贴于 2012年10月6日 00:34
hide
bbsi
// RtuProcess.cpp: implementation of the CRtuProcess class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "rtugprs.h"
#include "RtuProcess.h"
#include "DataType.h"
#include "MainFrm.h"
#include "Tools.h"
#include "PaintView.h"
#include "SQLMng.h"
......................
阅读全部
|
wo3312440947
贴于 2012年9月29日 10:39
hide
bbsi
国外的一个团队,在群论的基础上研究出了矩阵相乘的新的快速的方法,源程序好像是C++之类的语言,我同学以前下载过,但是现在找不到了,恳请大家帮忙啊!重谢啊!我的邮箱liusujuan0808@126.com 感激啊!
阅读全部
|
liusujuan080
贴于 2012年9月25日 14:34
hide
bbsi
前台
<asp:TemplateField HeaderText="序号">
<ItemTemplate>
<%# (this.Pager.CurrentPageIndex - 1) * this.Pager.PageSize + Container.DataItemIndex + 1%>
</ItemTemplate>
</asp:TemplateField>
后台
在RowDataBound事件中加
if (e.Row.RowIndex > -1)
......................
阅读全部
|
jeanine123
贴于 2012年9月24日 21:08
hide
bbsi
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 计算器_接口_
{
class Program
{
static void Main(string[] args)
{
ICompute minus = (ICompute)new Minus();
......................
阅读全部
|
jeanine123
贴于 2012年9月24日 14:54
hide
bbsi