码迷,mamicode.com
首页 > 编程语言 > 详细

c语言程序设计 第一例子

时间:2017-11-13 00:18:58      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:main   col   studio   header   c语言程序   scanf   后缀   换行符   output   

#include <studio.h>

int main(){

printf("this is  dog.\n");

return 0;

}

studio.h

表示standard  input 和 output 的缩写   后缀.h是头文件意思header

 

\n  是换行符

 

 

第二例子:

#include <studio.h>

int main(){

int max(int x,int y);

int a,b,c;

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

c=max(a,b);

printf("max=%d\n",c);

return 0;

 

}

int max(int x,int y){

int z;

if (x>y)z=x;

else z=y;

return(z);

}

 

 

 

}

c语言程序设计 第一例子

标签:main   col   studio   header   c语言程序   scanf   后缀   换行符   output   

原文地址:http://www.cnblogs.com/1314520xh/p/7823353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!