本节是学习C语言概述。

1、了解C语言出现的历史背景

2、掌握C语言程序的结构、书写格式和上机步骤

 

 

相关的源代码:

/* 例1.1 理解*/ 

#include <stdio.h> 

void
{ 

  printf("Hello, everyone!\n"); 

} 

/*例1.2 理解*/ 
#include <stdio.h> 

int add(int x,int y); 

/* This is the main program */ 

void main() 

{ 

  int a,b,sum; 

  a=10; 

  b=24; 

  sum=add(a,b); 

  printf("sum= %d\n",sum); 

} 

/* This function calculates the sum of x and y */ 

int add(int x,int y) 

{ 

  int z; 

  z=x+y; 

  return(z); 

} 

/*例1.3, 了解*/ 

# include <stdio.h> 

int max(int x, int y, int z); 
main( ) 

{ 

  int a, b, c, d; 

  printf("Enter three integers:"); 

  scanf("%d%d%d", &a,&b,&c); 

  d=max(a, b, c); 

  printf("Max is %d \n",d); 

} 

int max(int x, int y, int z) 

{ int w; 

if(x>=y) 

  { 

     if(x>=z) w=x; 

     else w=z; 

  } 

  else 

  { 

     if(y>=z) w=y; 

     else w=z; 

  } 

   return w; 

}

注意:

1 int , main, include, if, else, return等单词与其他单词之间需要留至少一个空格。

2 输入新的程序之前要关闭以前的程序(VC6): File -> Close Workspaces 。

3 程序中除注释之外,其他标点要用半角的,比如:

英文的句号: .

中文的句号: 。

 

下载 Powerpoint课件 (在装有PowerPoint的计算机上可以打开使用)

下载 图片格式的课件(PPT课件转换为JPG图片)(以图片方式查看,可以在MP4上查看)