问答详情
源自:2-3 变量及赋值

这样可以么,我不懂???

#include <stdio.h>

int main()

{

 int age=                           /*这里定义年龄*/

    printf("我今年18岁!\n", age);

    return 0;    

}


提问者:LIUyuting_3066 2015-02-25 19:10

个回答

  • Power3
    2015-03-23 12:14:08

    #include <stdio.h>

    int main()

    {

       // int age=

    /*

        不知道你是想定义还是赋值啊,先定义的话,还得赋值

    int Age;

    Age=18;

    */

    int Age;

    Age=18; 

    printf("今年我已经太老了,我都TMD%d了\n",Age);

    return 0;

    }

  • wshlin
    2015-02-25 22:25:53

    #include <stdio.h>
    int main()
    {
        int age=18;
        printf("我今年%d岁!\n",age);
        return 0;
    }