#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
int num = 10;
float f1 = 3.14f;
char ch ='Q';
char *s = "叶良辰";
NSString *str = @"赵日天"; //OC的字符串
//OC中的NSLog 函数
//1) 可以自动换行
//2) 多了时间戳
//3) 多了项目的名称
//4) 头文件 ObjcRuntime.h
// 注意: NSLog 不能打印 C的中文字符串
NSLog(@"Hello, World! num = %d,f1 = %.2f,ch = %c,s = %s",num,f1,ch,s);
//C中得输出函数
//1) 不能自动换行
//2) 不能输出时间戳信息
//3) stdio.h
// printf能输出OC的字符串吗? 不能
printf("Hello, World! num = %d,f1 = %.2f,ch = %c,s = %s,str = %s\n",num,f1,ch,s,str);
}
return 0;
} |
|