首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
#include<stdio.h>
#include<stdlib.h>

int main()
{
printf("hello,world\n");
system("pause");
return 0;
}
阅读全部 | intall 贴于 2015年3月14日 16:04     hide bbsi
Select Case "& Text.text&"
         
  Case "&Text1.Text&" = "", MsgBox("仪器名称为空,请输入!")
   Case "&text2.text&" = "", MsgBox("仪器型号为空,请输入!")
 Case "&text3.text&" = "", MsgBox("生产商为空,请输入!")
 Case "&text4.text&" = "", MsgBox("生产日期为空,请输入!")
  Case "&text5.text&" = "", MsgBox("购买日期为空,请输入!")
  Case "&text6.text&" = "", MsgBox("购买人为空,请输入!")
  Case "&text7.text&" = "", MsgBox("购买单价为空,请输入!")
  Case "&text8.text&" = "", MsgBox("购买数量为空,请输入!")
  Case "&text9.text&" = "", MsgBox("备注为空,请输入!")
  Case Else
......................
阅读全部 | liliok6688 贴于 2015年3月13日 20:39     hide bbsi
#include  <stdio.h>
main()
{

      printf("Hello  wrold");
}
阅读全部 | 若相惜 贴于 2015年3月6日 19:53     hide bbsi
#include  <stdio.h>
main()
{

      printf("Hello  wrold");
}
阅读全部 | 若相惜 贴于 2015年3月6日 19:53     hide bbsi
//package Test8;

import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
......................
阅读全部 | WIHATOW 贴于 2015年3月5日 18:39     hide bbsi
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace Calculator
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
......................
阅读全部 | WIHATOW 贴于 2015年3月5日 18:36     hide bbsi
/*代码包含的函数库申明*/
#include<stdio.h>
#include <dos.h>

/*定义影片信息结构体*/
typedef struct //影片info
{
char No[10];
char name[10];
int state;
}DI;

......................
阅读全部 | 易庄周 贴于 2015年3月4日 16:45     hide bbsi
/**
 * Provides a method to encode any string into a URL-safe
 * form.
 * Non-ASCII characters are first encoded as sequences of
 * two or three bytes, using the UTF-8 algorithm, before being
 * encoded as %HH escapes.
 * <p/>
 * Created: 17 April 1997
 * Author: Bert Bos <bert@w3.org>
 * <p/>
 * URLUTF8Encoder: http://www.w3.org/International/URLUTF8Encoder.java
 * <p/>
......................
阅读全部 | 日知己所无 贴于 2015年2月28日 23:12     hide bbsi
<html>

<head>
<title>Hello world</head>

</head>
<body style="background-color:'yellow'">
<h1>I love you
</h1>
</body>

</html>
阅读全部 | 左文波 贴于 2015年2月28日 11:20     hide bbsi
//链表节点
typedef struct Node*{
    char elem;
    struct Node* next;
};
//创建单链表
Node* CreateList(Node* head){
    if(NULL == head){
        head = (Node*)malloc(sizeof(Node));
        head->next = NULL;
    }
    Node* current = head,*temp;
......................
阅读全部 | aiyifan 贴于 2015年2月24日 21:56     hide bbsi
上一页 207 208 209 210 211 212 213 214 215 216 下一页