#include<stdio.h>
int main()
{
int i,j,result;
for (i=1;i<10;i++)
{
for(j=1;j<=i;j++)
{
result=i*j;
printf("%d*%d=%-3d",j,i,result);
if(i==j)
printf("\n");
......................
阅读全部
|
LLC_HJW
贴于 2013年1月12日 10:03
hide
bbsi
#include <string.h>
#include <stdio.h>
#include <Windows.h>
#include <string.h>
#include "StdAfx.h"
#define days1800 341
int nongli[]=
{
/***************************************
* 农历1800-2100年大月小月与闰月 *
* (连同111个闰月在内共3723个月) *
* 公元1800-01-01为腊月(大)初七 *
......................
阅读全部
|
wp231957
贴于 2013年1月11日 16:03
hide
bbsi
#include <string.h>
#include <stdio.h>
#include <Windows.h>
#include <string.h>
#include "StdAfx.h"
#define days1800 341
int nongli[]=
{
/***************************************
* 农历1800-2100年大月小月与闰月 *
* (连同111个闰月在内共3723个月) *
* 公元1800-01-01为腊月(大)初七 *
......................
阅读全部
|
wp231957
贴于 2013年1月11日 10:06
hide
bbsi
#include <string.h>
#include <stdio.h>
#include <Windows.h>
#include <string.h>
int nongli[]=
{
/***************************************
* 农历1800-2100年大月小月与闰月 *
* (连同111个闰月在内共3723个月) *
* 公元1800-01-01为腊月(大)初七 *
* 公元1800-01-25为农历正月初一 *
***************************************/
......................
阅读全部
|
wp231957
贴于 2013年1月10日 23:05
hide
bbsi
#include <string.h>
#include <stdio.h>
#include <Windows.h>
#include <string.h>
#define leap(y) (y%4==0&&y%100||y%400==0)
char days[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
char *xq[]={"日","一","二","三","四","五","六", "七","八","九","十","冬","腊" };
struct date{ int year,month,day; };
typedef struct
{
......................
阅读全部
|
wp231957
贴于 2013年1月10日 16:27
hide
bbsi
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
公历日期与农历日期的相互转换程序
【极限范围】1800-1-25~2101-1-28
-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#include<stdio.h>
#include<string.h>
#define leap(y) (y%4==0&&y%100||y%400==0)
char days[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
char *xq[]={"日","一","二","三","四","五","六",
"七","八","九","十","冬","腊" };
struct date{ int year,month,day; }
d1={ 1800,1,25 },/*阴历1800正月初一*/
......................
阅读全部
|
wp231957
贴于 2013年1月10日 15:48
hide
bbsi
void ClisttestDlg::OnBnClickedOk()
{
// TODO: 在此添加控件通知处理程序代码
//CDialogEx::OnOK();
// TODO: 在此添加控件通知处理程序代码
CFileDialog dlg(true);
if (dlg.DoModal() == IDOK)
{
//this->MessageBox(L"选择的文件地址:" + dlg.GetPathName() + " | 选择的文件名:" + dlg.GetFileName() ,
// L"提示:",MB_OK);
}
else
......................
阅读全部
|
wp231957
贴于 2013年1月9日 22:25
hide
bbsi
#include<stdio.h>
int main()
{
int a[]={1,2,3,4,5};
int *p=a;
printf("%d,%d,%d,%d,%d,%d,%d,%d\n",*p,*(++p),(*p)++,*p,*p--,--(*p),*p);
}
输出的结果为啥第一个是2
阅读全部
|
zyd550153
贴于 2013年1月9日 20:56
hide
bbsi
// listtestDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "listtest.h"
#include "listtestDlg.h"
#include "afxdialogex.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
......................
阅读全部
|
wp231957
贴于 2013年1月9日 14:37
hide
bbsi
// listtestDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "listtest.h"
#include "listtestDlg.h"
#include "afxdialogex.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
......................
阅读全部
|
wp231957
贴于 2013年1月9日 11:29
hide
bbsi