#include <iostream>
using namespace std;
int main (void)
{
int a;
int *p=&a,**pp=&p;//定义指针,指向指针的指针
a=1; //给整形变量a赋值
cout<<"a= "<<a<<endl; //输出变量值
cout<<"*p= "<<*p<<endl; //输出指针指向的值
cout<<"p= "<<p<<endl; //输出指针的值
cout<<"*pp= "<<*pp<<endl; //输出指向指针的指针的值
......................
阅读全部 | 2016年5月28日 15:37
#include<iostream>
using namespace std;
const int SIZE=10;
int main()
{
int str[SIZE];
int sum=0;
cout<<"请输入"<<SIZE<<"个int型整数: "<<endl;
for(int i=0;i<SIZE;i++)
{
cout<<"请输入第"<<i+1<<"个数据:";
while(!(cin>>str[i]))
......................
阅读全部 | 2016年4月9日 15:26
#include <stdio.h>
#include<stdlib.h>
#define LEN 21
int main ()
{
FILE *fp;
char ch,buffer[LEN];
if(!(fp=fopen("fishc.txt","at+")))
{
printf("Cannot open file strike any key exit!");
exit(1);
}
......................
阅读全部 | 2016年4月8日 16:54
#include <stdio.h>
#include <stdlib.h>
#define LEN 1001
int main ()
{
FILE *fp;
char buffer[LEN];
if(!(fp=fopen("fishc.txt","rt")))
{
printf("\nCannot open file strike any key exit!");
exit(1);
......................
阅读全部 | 2016年4月8日 16:36
//图片文件合成器
#include <stdio.h>
#include<stdlib.h>
int main (void)
{
FILE *f_pic,*f_file,*f_finish;
char ch, pic_name[20],file_name[20],finish_name[20];
printf("请输入需要合成的图片和文件的名称:\n");
printf("图片:");
scanf("%s",pic_name);
......................
阅读全部 | 2016年4月8日 16:12
#include <stdio.h>
#include <stdlib.h>
int main()
{
int i;
int sum=0;
char ch;
printf("请输入一串整数和任意含空格的数:");
while(scanf("%d",&i)==1)
{
sum+=i;
while((ch=getchar())==' ')
......................
阅读全部 | 2016年4月8日 10:28
#include<stdio.h>
int addArray(int array[],int n);
int main(void)
{
int date[]={0,1,2,3,4,5,6,7,8,9};
int size=sizeof(date)/sizeof(date[0]);
printf("结果是:%d\n",addArray(date,size));
return 0;
}
int addArray(int array[],int n)
{
......................
阅读全部 | 2016年4月8日 09:09
#include <iostream>
using namespace std;
double Average(double,double);
int main()
{
double a,b,average;
cout<<"Please enter two number:\n";
while (cin>>a>>b&&a!=0&&b!=0)
{
average=Average(a,b);
cout<<"Harmonic average: "<<average<<endl;
......................
阅读全部 | 2016年4月7日 21:11
//C++ Primer Plus -- Chapter 3--5
#include <iostream>
int main ()
{
using namespace std;
long double world;
cout<<"Enter the world's population:";
cin>>world;
cout<<"Enter the population of the USA:";
long double usa;
cin>>usa;
......................
阅读全部 | 2016年3月30日 16:05
//C++ Primer Plus -- Chapter 3--4
#include <iostream>
using namespace std;
const int sec_to_min=60;
const int min_to_hour=60;
const int hour_to_day=24;
int main ()
{
......................
阅读全部 | 2016年3月30日 15:29