鱼C论坛

 找回密码
 立即注册
查看: 1259|回复: 4

[已解决]可变参数列表返回单个字符出现以下报错

[复制链接]
发表于 2021-9-26 18:09:52 | 显示全部楼层 |阅读模式

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

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

x
#include <stdio.h>
#include <string.h>
#include <stdarg.h> 
#include <math.h>

int myprintf(const char* format,...)
{
        int i=0,temp,example,example1,j=0,zifushu=0,chushu1,chushu2;
        char a;
        char s;
        va_list vap;
        va_start(vap,format);
        
        while(1)
        {
                if(*(format+i)=='\0')
                break;
                if(*(format+i)=='%')
                {
            while(1)
        {
                        if(*(format+i+1)=='d')
                        {
                                temp=va_arg(vap,int);
                                example=temp;
                                while(1)
                                {
                                        if(temp==0)
                                        {
                                                j=1;
                                                break;
                                        }
                                        if(example==0)
                                        break;
                                        j++;
                                        example=example/10;
                                }
                                example=temp;
                                if(temp>=0)
                                {
                                        while(1)
                                  {
                                        if(j==0)
                                        break;
                                        chushu1=pow(10,j);
                                        chushu2=pow(10,j-1);
                                        example1=example%chushu1/chushu2;
                                        a=example1+48;
                                        putchar(a);
                                        j--;
                                        zifushu++;
                                  }
                                }
                                else
                                {
                                        putchar('-');
                                        while(1)
                                  {
                                        if(j==0)
                                        break;
                                        chushu1=pow(10,j);
                                        chushu2=pow(10,j-1);
                                        example1=example%chushu1/chushu2;
                                        a=48-example1;
                                        putchar(a);
                                        j--;
                                        zifushu++;
                                  }
                                }
                        }
                    else if(*(format+i+1)=='c')
                        {
                                s=va_arg(vap,char);
                                putchar(s);
                        }
                        i=i+2;
                        if(*(format+i)!='%')
                        break;
        }
}
                putchar(*(format+i));
                i++;
                zifushu++;
}
        return zifushu;
}
                        
int main()
{
        myprintf("%d%c",-1234,'s');
}




1        0        E:\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include\stdarg.h        In file included from E:/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include/stdarg.h
3                C:\Users\DRD\Desktop\c\未命名51.cpp                         from C:\Users\DRD\Desktop\c\未命名51.cpp
C:\Users\DRD\Desktop\c\未命名51.cpp        In function 'int myprintf(const char*, ...)':
73        18        C:\Users\DRD\Desktop\c\未命名51.cpp        [Warning] 'char' is promoted to 'int' when passed through '...'
73        18        C:\Users\DRD\Desktop\c\未命名51.cpp        [Note] (so you should pass 'int' not 'char' to 'va_arg')
73        18        C:\Users\DRD\Desktop\c\未命名51.cpp        [Note] if this code is reached, the program will abort
最佳答案
2021-9-27 10:32:06
看这里:https://blog.csdn.net/llljjlj/article/details/84985295
73行 s=va_arg(vap,char);改成 char s=va_arg(vap,int);
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-9-26 19:54:39 | 显示全部楼层
vs2012 没有错误,可以运行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-9-26 20:26:21 From FishC Mobile | 显示全部楼层
jhq999 发表于 2021-9-26 19:54
vs2012 没有错误,可以运行

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

使用道具 举报

发表于 2021-9-27 10:13:39 | 显示全部楼层
3        18        C:\Users\DRD\Desktop\c\未命名51.cpp        [Warning] 'char' is promoted to 'int' when passed through '...'
73        18        C:\Users\DRD\Desktop\c\未命名51.cpp        [Note] (so you should pass 'int' not 'char' to 'va_arg')
73        18        C:\Users\DRD\Desktop\c\未命名51.cpp        [Note] if this code is reached, the program will abort
一个警告两个注意,没有错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-9-27 10:32:06 | 显示全部楼层    本楼为最佳答案   
看这里:https://blog.csdn.net/llljjlj/article/details/84985295
73行 s=va_arg(vap,char);改成 char s=va_arg(vap,int);
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-15 22:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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