我刚开始在一个连青少年都是技术恐惧症边缘的小镇学习 C,所以请放轻松!^^'
我正在尝试构建一个读取多个房间的程序,然后为每个房间循环一系列用户输入。我希望能够将这些用户输入存储在一个数组中,这样我就可以在程序的稍后阶段将它们相加。我还没有转向指针或任何 malloc/realloc ;正如我所说,我学习的时间不长。任何帮助或建设性的意见[即没有指出我的完整和彻底的新手]将不胜感激!
int main(){
int marks[20];
int i;
int rooms = 0;
int j = rooms;
char option = 0;
int lights[20];
int hrsUsed[20];
int Telly_Computer[20];
printf("Enter number of rooms");
scanf_s("%d", rooms);
while (option != 'Q'){
for(i=0;i<j;i++) {
printf("input wattage of lights");
scanf_s("%d", (lights+i));
printf("input number of hours use/day (average)");
scanf_s("%d", (hrsUsed+i));
printf("input number of TV/Computers");
scanf_s("%d", (Telly_Computer+i));
}
return 0;
}
}