1 条题解

  • 0
    @ 2021-6-15 12:53:12

    C :

    #include<stdio.h>
    main()
    {
    	char a,b;
    	int c;
    	scanf("%c%*c%c%*c%d",&a,&b,&c);
    	printf("\'%c\',\'%c\',%d",a,b,c);
    }  
    

    C++ :

    #include<stdio.h>
    main()
    {
    	char a,b;
    	int c;
    	scanf("%c%*c%c%*c%d",&a,&b,&c);
    	printf("\'%c\',\'%c\',%d",a,b,c);
    }  
    
    • 1

    【设计型】第4章:键盘输入和屏幕输出 简单的输出5

    信息

    ID
    579
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者