黑马程序员技术交流社区

标题: 宏#define命令练习 [打印本页]

作者: CesC    时间: 2015-7-25 22:56
标题: 宏#define命令练习

题目:宏#define命令练习 

1.程序分析:

2.程序源代码:

#include "stdio.h"

#define TRUE 1

#define FALSE 0

#define SQ(x) (x)*(x)

void main()

{

int num;

int again=1;

printf("\40: Program will stop if input value less than 50.\n");

while(again)

{

printf("\40:Please input number==>");

scanf("%d",&num);

printf("\40:The square for this number is %d \n",SQ(num));

if(num>=50)

  again=TRUE;

else

  again=FALSE;

}

}







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2