摘要:
属性变量可以理解为成员变量加上几个方法 @property属性实现了三步 例如:@property(nonatomic,strong) int age; 1.提供了一个成员变量_age(在属性变量名前加了下划线)2.提供了set(setAge) get(age)方法的声明(无get 防止与之后的某个 阅读全文
摘要:
所以结果为: 78 90 78 90 90 78 阅读全文
摘要:
所以结果为: 7 0 6 1 阅读全文
摘要:
1.字符串常量 char *name="sjsj"; 系统分配内存 字长+1 要加'\0' 2. char *address=NULL; address=(char *)malloc(10*sizeof(char)); if(address==NULL){ exit(EXIT_FAILURE); } scanf("%s",address);碰见空格默认结束 //realloc重新... 阅读全文
摘要:
#include #include #define kSuccess 1 #define kWrong 0 int password=123456; float balance = 1000; //输入密码操作 int inputpassword(void); //退出程序操作 void shut(void); //提示用户操作 void show(char *a[],int n);//指... 阅读全文
摘要:
1.以上是二维数组的输入与输出// 输入时要注意分行输入 2.对于一维字符数组,有以下几种方法:char a[12]; (1)scanf("%s",str);//识别空格作为字符串的结尾;即若输入hag jhg 则只输出hag; (2)getchar 逐个对元素赋值;//可以识别 '\n' , (3 阅读全文
摘要:
#include #include #include int main(int argc, const char * argv[]) { int a[10]; int temp, i, j; srand((unsigned int)time(NULL)); for( i = 0;i =0;j--){ if(a[ j... 阅读全文
摘要:
#include int main(int argc, const char * argv[]) { int a[ 100 ]={}; int i ,t,j,n; printf("请输入你想排序的数的个数:"); scanf("%d",&n); printf("请输入你想排序的数据:"); for(i = 0;i 0){ ... 阅读全文