很简单利用C语言中的动态数组就可以搞定
举个例子
#include <stdio.h>#include <stdlib.h>
#include <malloc.h>
#include <time.h>
int 答首main()
{
srand((unsigned)time(NULL))
int n
int new_number
printf("please input a number:\n")
scanf("%d",&n)
int *p = (int *)malloc(n*sizeof(int))
for (int i=0i<ni++)
{
p[i] = rand()%100
}
printf("the array is:\n")
for (int i=0i<ni++)
{
printf("%d\t",p[i])
}
printf("add a new number to array:\n")
scanf("%d",&new_number)
int *q = (int *)realloc(p,(n+1)*sizeof(int))
q[n] = new_number
printf("after add a new number the array is:\n")
for (int i=0i<n+1i++)
{
printf("%d\t",q[i])
}
free(q)
system("pause")
return 0
}
通过动态数组就可以在原本已经满敏察的清拿数数组后面继续添加元素
1、方法解释:数组的容量一经定义就固定的,不能动态的添加元素,要想添加就要重新定义个更大容量的数组,再把原数消陪模组复制过去。
2、具体方法:
#include <iostream>
#include <vector>
#include <string>
using namespace std
int main
vector<string>vecStr;
vecStr.push_back("x1")。
扩展资料:
程序结构
C语言的模块化程序结构用函数来实现,即将复杂的C程序分为若干模块,每个模块都编写成一个C函数,然后通过主函数调用函数及函数调用函数来实现一大型问题的C程序编写,因此常说:C程序=主函数+子函数。
因此,对函数的定义、调用、值的返回等中要尤其注重理解和应用,并通过上机调试加以巩固。
判断语句(选择结构):
if 语句:“如果”语句;if—else 语句:“若?(则)?否则?”语句;switch 语句:“切换”语句;switch—case:“切换—情况”语句。
循环语句(循环结构):
while 语句:乱薯“当?”语句;do—while 语句:“做?当?(时候)”语句;for 语句:条件语句(即“(做)?为了?”语句)。
跳转语句(循环结构:是否循环):拿缓
goto 语句:“转舵”语句,也称“跳转”语句;break 语句:“中断”(循环)语句,即结束整个循环;continue 语句:“继续”语句(结束本次循环,继续下一次循环);return 语句:“返回”语句。
参考资料来源:百度百科--数组元素
参考资料来源:百度百科--c语言
输入整型数组,这样循环是可以的。scanf输入格式没有指定,默认是空格分割。
也就是说,你要么输入一个数就回姿郑车,再输橡凳第二个。迹如颂
要么连续输入多个数,用空格分割。
看看,你输入格式对不对。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)