#include <stdio.h>
int main()
{
int a=10;
printf("hello world\n");
if(a>5)
{printf("yes");
printf ("hehe");
}
else
{printf("no");
printf("haha");
}
return(0);
}
# ident -kr temp.c
# cat temp.c
#include <stdio.h>
int main()
{
int a = 10;
printf("hello world\n");
if (a > 5) {
printf("yes");
printf("hehe");
} else {
printf("no");
printf("haha");
}
return (0);
}
欢迎光临 曲径通幽论坛 (http://www.groad.net/bbs/) | Powered by Discuz! X3.2 |