15+20怎么用C语言输出框架

如题所述

#include "stdio.h"
main()
{
    printf("%d",15+20);
}

温馨提示:内容为网友见解,仅供参考
第1个回答  2014-10-11

#include <stdio.h>

int main()

{

    printf("15+20=%d\n",15+20);

return 0;

}

本回答被网友采纳
第2个回答  推荐于2016-12-03
#include <stdio.h>
int main(void)
{
printf("%d",15+20);
return 0;
}
相似回答