- /*
- 哥,你可以加点注释么?这个直接发出来谁能看得懂- -,就算是能看得懂也
- 看的很费劲不是么- -
- */
- //引用缺少 - -
- //#include <stdio.h>
- #include
- //main函数之前的int最好要省略,虽然可以省略
- main(){
- int ir;
- uur:
- printf("333\n");
- getch();
- scanf("d%",&ir);
- printf("t=%d\n",ir);
- printf("t=%d\n",&ir);
- getch();
- //goto语句已经被淘汰了,这个很容易出错的,推荐循环控制,
- //goto还是别用了,而且goto影响代码可读性
- goto uur;}//这里}最好换个行- -,这有损可读性啊.
复制代码 |