iOS

 

//首先创建格式化对象

    

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

    

    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    

    //然后创建日期对象

    

    NSDate *date1 = [dateFormatter dateFromString:@"2014-12-20 00:00:00"];

    

    NSDate *date = [NSDate date];

    

    //计算时间间隔(单位是秒)

    

    NSTimeInterval time = [date1 timeIntervalSinceDate:date];

    

    //计算天数、时、分、秒

    

    int days = ((int)time)/(3600*24);

    

    int hours = ((int)time)%(3600*24)/3600;

    

    int minutes = ((int)time)%(3600*24)%3600/60;

    

    int seconds = ((int)time)%(3600*24)%3600%60;

    

    NSString *dateContent = [[NSString alloc] initWithFormat:@"某年某月某日的某一天%i%i小时%i%i",days,hours,minutes,seconds];

    

    //%i可以自动将输入转换为十进制,%d则不会进行转换)

    

    //赋值显示

    

    UILabel *timeLab = (UILabel *)[self.view viewWithTag:666666];

    timeLab.text = dateContent;

    NSLog(@"%@",dateContent);

附:

画心1:

#include <stdio.h>
int main() {
for(float y=1.5f;y>-1.5f;y-=0.1f){
for(float x=-1.5f;x<1.5f;x+=0.05f){
float a= x*x+y*y-1;
putchar(a*a*a-x*x*y*y*y<=0.0f?'*':'');}
}
}

画心2:

原文地址:https://www.cnblogs.com/gongyuhonglou/p/10311623.html