#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
while(1){
int y,m,d;
int mon[12]={31,28,31,30,31,30,31,31,30,31,30,31};
int n,N;
cin>>y>>m>>d;
......................
阅读全部
|
woaihe2728
贴于 2013年3月14日 00:29
hide
bbsi
一.
#include<stdio.h>
main()
{
int a=5,c=4,b=5;
a||(b=a+c)&&c;
printf("%d\n",a||(b=a+c)&&c);
printf("%d %d %d\n",a,b,c);
a&&(b=b+1)||(c=b+1);
printf("%d\n",a&&(b=b+1)||(c=b+1));
printf("%d %d %d",a,b,c);
}
......................
阅读全部
|
魔道无敌
贴于 2013年3月12日 16:14
hide
bbsi
#include <windows.h>
#include <stdio.h>
#include <time.h>
#include <mmsystem.h>
#include "resource.h"
HINSTANCE hInst;
HBITMAP pic,empty,compare_pic,pict[8],compare_pict[8],other; //所有图的变量名
HDC hdc,mdc; //DC名
int mouse_x,mouse_y,n=0,line=3,high3=100,high4=200,high5=300; //鼠标X Y 移动步数 难度 记录
char str[10]=" "; //字符串,显示步数和记录时用
......................
阅读全部
|
w一直很好
贴于 2013年3月11日 14:56
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
#define OK 1
#define FALSE 0
#define maxsize 1024
typedef struct node
{
char data;
struct node *next;
}linkstack;
......................
阅读全部
|
笑傲
贴于 2013年3月9日 15:19
hide
bbsi
#include<stdio.h>
int CutEachOther(int a,int b)
{
int temp;
while(1)
{
if(a==b){temp=a;break;}
else if(a<b)
{temp=a;a=b;b=temp;}
temp =a-b;
if(temp==b)
{temp=b;break;}
......................
阅读全部
|
雨中人X
贴于 2013年3月9日 13:06
hide
bbsi
#include<stdio.h>
int main()
{
printf("hello world");
}
阅读全部
|
fumolan
贴于 2013年3月7日 13:01
hide
bbsi
#include<stdio.h>
int main()
{
int qusort(int a[],int n,int m);
int a[10]={23,33,56,57,58,78,89,90,800,900};
int d=0;
d=qusort(a,10,800);
printf("%d:%d",d,a[d-1]);
return 0;
}
int qusort(int a[],int n,int m)
{
......................
阅读全部
|
梦幻乐园
贴于 2013年3月6日 15:47
hide
bbsi
#include <stdio.h>
int main(void)
{
_int64 dest[30000]={0};
int index=0;
char tmp;
FILE* stream;
stream = fopen("d:\\test.txt", "rb");
if( stream == NULL )
printf( "The file test.txt was not opened\n" );
else
......................
阅读全部
|
wp231957
贴于 2013年3月6日 14:01
hide
bbsi
#include <stdio.h>
void count_w(char* source,int* sum_num,int* sum_char,int* sum_space)
{
while(*source!='\0')
{
if(*source>='a' && *source<='z') (*sum_char)++;
if(*source>='A' && *source<='Z') (*sum_char)++;
if(*source>='0' && *source<='9') (*sum_num)++;
if(*source==0x20) (*sum_space)++;
source++;
}
......................
阅读全部
|
wp231957
贴于 2013年3月6日 09:25
hide
bbsi
#include<stdio.h>
int main()
{
void shsort(int a[],int n);
int i=0;
int a[11]={0,23,4,56,43,33,88,90,56,45,66};
shsort(a,10);
for(i=1;i<=10;i++)
printf("%d ",a[i]);
return 0;
}
......................
阅读全部
|
梦幻乐园
贴于 2013年3月5日 21:54
hide
bbsi