首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
用MFC编的程序单步调试时可以实现想要的功能,但是正常运行时就不能完成预计的功能,什么原因,跪求解答
阅读全部 | 编程fens 贴于 2014年12月28日 20:24     hide bbsi
#include<stdio.h>
#include<string.h>
int main()
{
 char a[10]="12345";
 gets(a);
 strcat(a,"6789");
 printf("%s\n",a+1);
 return 0;
}
阅读全部 | yeah122 贴于 2014年12月27日 16:00     hide bbsi
#include<iostream>
#include <stdio.h>
#include <tchar.h>
#include<fstream>
#include<windows.h>
#include<time.h>
#include<string>
#include<conio.h>
using namespace std;
const int Max_len = 20;//栈的长度
class shuzizhan//数字栈
{
......................
阅读全部 | gl523518321 贴于 2014年12月25日 15:20     hide bbsi
#include <stdio.h>
#include <time.h>
#include <stdlib.h>

#define N 52

void swap(int* a,int* b)
{
int tmp;
tmp=*a;
*a=*b;
*b=tmp;
......................
阅读全部 | wp231957 贴于 2014年12月24日 15:05     hide bbsi
#include<stdio.h>
#include<string.h>
#include<windows.h>
char a[1002],b[1002],c[1002];
int s;
void f()
{int t,a1,b1,sum,y=0,i;
 a1=strlen(a);
 b1=strlen(b);
 t=(a1<=b1)?a1:b1;
 for(i=0;i<t;i++)
 {
......................
阅读全部 | a422880476 贴于 2014年12月22日 15:31     hide bbsi
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 团团圆圆饭店管理系统
{
......................
阅读全部 | 程序袁 贴于 2014年12月22日 11:13     hide bbsi
#include<stdio.h>
#include<string.h>
int main()
{  int i,sum,count,l,j,p=1;
    char a[101];
 while(gets(a))
 {   sum=0;
       p=1;
       count=0;
 l=strlen(a);
      for(i=0;i<l;i++)
  {      if(p)
......................
阅读全部 | 谭林祥 贴于 2014年12月18日 11:57     hide bbsi
#include<iostream.h>
int main()
{
int m=3,n=4,x;
x=-m++;
x=x+8/++n;
cout<<x;
return 0;
}
阅读全部 | 中工小青年 贴于 2014年12月17日 22:37     hide bbsi
#include<stdio.h>
#include<stdlib.h>

typedef int KeyType;

typedef struct{
KeyType key;
}ElemType;

typedef struct{

ElemType *elem;
......................
阅读全部 | 晨煊 贴于 2014年12月16日 17:31     hide bbsi
sing System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;
......................
阅读全部 | TONGG 贴于 2014年12月14日 19:12     hide bbsi
上一页 210 211 212 213 214 215 216 217 218 219 下一页