学好C走遍天下都不怕


私信TA

用户名:goodC

访问量:1151

签 名:

等  级
排  名 2811
经  验 2143
参赛次数 0
文章发表 31
年  龄 0
在职情况 学生
学  校 合肥学院
专  业

  自我简介:

#include<stdio.h>
#include<string.h>
#include<malloc.h>


int main(){
	int n;
	int status=scanf("%d", &n);
	int*p = (int*)malloc(sizeof(int) * n);

	if(p != NULL){//可读大小为 sizeof(int)*n个字节,但可能读了8个字节. 用的是p[k] 编译器误认为n可能取0
		for(int k = 0; k < n; k++){
			*(p+k) = k+1;//打印看到的仅仅是p的地址
			/*printf("%d", *(p + k));*/
		}

		int count =0;
		int cycle_j = 0;
			while(1){
				for(int t = 0;t<n;t++){
					if( *(p + t) != 0){
						cycle_j++;
						if(cycle_j % 3 == 0){
							*(p + t) = 0;
							cycle_j = 0;
							count++;
						} 
					}
				}
				if(count == n - 1) break;
			}
		
	}
	if(p != NULL){
		for(int k = 0; k < n; k++){
			if(*(p + k) != 0)
				printf("%d", *(p + k));//可读大小为 sizeof(int)*n个字节,但可能读了8个字节.
		}
		free(p);
		p = NULL;
	}

	return 0;
}
 

0.0分

1 人评分

  评论区

  • «
  • »