鱼C论坛

 找回密码
 立即注册
查看: 1727|回复: 7

[已解决]找到空的受控语句?这是否是故意的

[复制链接]
发表于 2020-5-14 14:10:42 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
#include<stdlib.h>
int main()
{void convert(int n);
int number;
printf("输入一个数/n");
scanf("%d",&number);
printf ("输出/n");
if (number<0);
putchar('-');//报错行//
putchar(' ');//报错//
printf ("/n");
return 0;
}
void convert(int n)
{int i;
if (( i=n/10)!=0)
        convert(n);
putchar (n%10+'0');
putchar (32);


}
最佳答案
2020-5-14 14:12:16
改成
#include<stdio.h>
#include<stdlib.h>
int main()
{
    void convert(int n);
    int number;
    printf("输入一个数/n");
    scanf("%d", &number);
    printf("输出/n");
    if (number < 0)
    putchar('-');//报错行//
    putchar(' ');//报错//
    printf("/n");
    return 0;
}
void convert(int n)
{
    int i;
    if ((i = n / 10) != 0)
        convert(n);
    putchar(n % 10 + '0');
    putchar(32);


}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-5-14 14:12:05 | 显示全部楼层
本帖最后由 liuzhengyuan 于 2020-5-14 14:14 编辑

你是 /n,不应该是 \n 吗

你的 if 语句后面多加了一个分号!
if (number<0);
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-14 14:12:16 | 显示全部楼层    本楼为最佳答案   
改成
#include<stdio.h>
#include<stdlib.h>
int main()
{
    void convert(int n);
    int number;
    printf("输入一个数/n");
    scanf("%d", &number);
    printf("输出/n");
    if (number < 0)
    putchar('-');//报错行//
    putchar(' ');//报错//
    printf("/n");
    return 0;
}
void convert(int n)
{
    int i;
    if ((i = n / 10) != 0)
        convert(n);
    putchar(n % 10 + '0');
    putchar(32);


}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-14 14:16:50 | 显示全部楼层
本帖最后由 xiaosi4081 于 2020-5-14 14:23 编辑
#include<stdio.h>
#include<stdlib.h>
int main()
{void convert(int n);
int number;
printf("输入一个数\n");
scanf("%d",&number);
printf ("输出\n");
if (number<0){
putchar('-');//报错行//
putchar(' ');//报错//
printf ("/n");
}
return 0;
}
void convert(int n)
{int i;
if (( i=n/10)!=0){
        convert(n);
        }
putchar (n%10+'0');
putchar (32);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-14 14:18:20 | 显示全部楼层


17 行 1 列[Error] a function-definition is not allowed here before '{' token
22 行 1 列[Error] expected '}' at end of input

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-14 14:20:17 | 显示全部楼层
liuzhengyuan 发表于 2020-5-14 14:18
17 行 1 列[Error] a function-definition is not allowed here before '{' token
22 行 1  ...

多谢提醒
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-14 14:20:28 | 显示全部楼层

你if后面只有左大括号,没有右大括号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-14 14:22:03 | 显示全部楼层
liuzhengyuan 发表于 2020-5-14 14:12
你是 /n,不应该是 \n 吗

你的 if 语句后面多加了一个分号!

你说的没错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 00:56

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表