12月25日 操作系统 周一

时间:2022-06-01 16:40:31
操作系统

12月25日     周一
问题:


新知识:


天天敲代码
/* Note:Your choice is C IDE */
#include "stdio.h"
void main()
{
    int x=1;
    double y=2;
    float z=3;
    char o='a';
    char p[]="abc";
    
    printf("%d  %.2f %.2f %c %s",x,y,z,o,p);
}


/* Note:Your choice is C IDE */
#include "stdio.h"
int then(int x)
{
if(x>0)
    {
    return x;
    }
    else
    {
    return -x;
    }
}
void main()
{
    int x;
    printf("输入一个数");
    scanf("%d",&x);
    
    printf("%d",then(x));
}
感悟:天天都有新的问题,天天都有新的烦恼,每天都要提高解决问题的能力。
得与失:游戏全卸载了,迎接2018,好多事情需要去面对,其实承担并没有那么可怕,直面,直面。


知耻而后勇