码迷,mamicode.com
首页 > 编程语言 > 详细

c语言,warning: return type of 'main' is not `int'怎么解决?

时间:2016-09-07 22:33:13      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:

////警告可以忽略,但如果严格点的话

#include<stdio.h>
#include<math.h>
 
int main(int argc, char *arg[]) ///标准C主函数原型
{
    float x,y;
    printf("Enter x:");
    scanf("%f",&x);
    if(x<0){
        y=pow(x,5)+2*x+1/x;
    }
    else{
        y=sqrt(x);
    }
    printf("f(%.2f)=%.2f\n",x,y);
     
  return 0;
}

c语言,warning: return type of 'main' is not `int'怎么解决?

标签:

原文地址:http://www.cnblogs.com/caochuangui/p/5851085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!