Chinaunix首页 | 论坛 | 博客
  • 博客访问: 13235
  • 博文数量: 7
  • 博客积分: 185
  • 博客等级: 入伍新兵
  • 技术积分: 45
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-29 20:43
文章分类

全部博文(7)

文章存档

2012年(7)

我的朋友
最近访客

分类: LINUX

2012-05-04 08:37:25

indent工具可以把代码格式化成某种风格
$ indent -kr -i8 main.c $ cat main.c
#include #include #include int main(void) { char gesture[3][10] = { "scissor", "stone", "cloth" }; int man, computer, result, ret; srand(time(NULL)); while (1) { computer = rand() % 3; printf ("\nInput your gesture (0-scissor 1-stone 2-cloth):\n"); ret = scanf("%d", &man); if (ret != 1 || man < 0 || man > 2) { printf("Invalid input!\n"); return 1; } printf("Your gesture: %s\tComputer's gesture: %s\n", gesture[man], gesture[computer]); result = (man - computer + 4) % 3 - 1; if (result > 0) printf("You win!\n"); else if (result == 0) printf("Draw!\n"); else printf("You lose!\n"); } return 0; }
-kr选项表示K&R风格,-i8表示缩进8个空格的长度
阅读(853) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~