- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在网上搜索试图解决我的构建错误。我非常确定一旦修复了这些问题,我的程序就能正常运行,但由于我还无法编译我的代码,因此很难测试。
如有任何建议,我们将不胜感激,是的,这是作业。我是 C 语言的新手,我知道我可能会犯一些愚蠢的错误。我会将所有回复视为学习机会。代码如下。错误发布后。
// Program will take user input for student names and provide functions in
// order to sort by first name, by last name
// by score and a menu function.
#include <stdio.h>
#include <string.h>
// Prototypes for functions
int menu();
void searchLast(char [][21], char [][21],float [], int);
void searchFirst(char [][21], char [][21],float [], int);
void sortLast(char [][21], char [][21],float [], int);
void sortScore(char [][21], char [][21],float [], int);
void printRecords(char [][21], char [][21],float [], int);
int main()
{
int j,NumOfRecords, k = 0;
char FirstN[15][21],LastN[15][21];
float Score[15];
int select = 0;
// Asking for the number of records the students to add
printf("How many records would you like to enter, minimum of 5, max of 15? "); G
scanf("%d",&NumOfRecords);
for( k = 0; k < NumOfRecords; k++) // Loop to take user input and save in appropriate
// array location
{
for(j=0;j<21;j++)
{
scanf("First name: %s", &FirstN[k][j]);
scanf(" Last Name: %s", &LastN[k][j]);
scanf(" Score: %f", &Score[k]);
printf("\n");
}
}
select = menu(); // Calling menu function to assign selection to call the next function
printf("%d",select); // checking to see that selection was passed to 'select'
while (select != 0) // Sentinel loop to provide user with options to modify array output
{
if (select == 1) // prints all records
{
printRecords(FirstN,LastN,Score,NumOfRecords);
}
if (select == 2) //Searches for First name and prints associated records
{
searchFirst(FirstN,LastN,Score,NumOfRecords);
}
if (select == 3) // Searches for last name and prints associated records
{
searchLast(FirstN,LastN,Score,NumOfRecords);
}
if (select == 4) // Sorts records by score and prints associated records
{
sortScore(FirstN,LastN,Score,NumOfRecords);
}
if (select == 5) // Sorts by last name and prints associated records
{
sortLast(FirstN,LastN,Score,NumOfRecords);
}
if (select == 0) // Exits program
break;
select = menu();
}
return 0;
}
int menu() // The menu function
{
int num;
printf("Menu Options \n \n");
printf("Print Records (press 1) \n");
printf("Search by first name (press 2) \n");
printf("Search by last name (press 3) \n");
printf("Sort by score (press 4) \n");
printf("Sort by last name (press 5) \n");
printf("Exit the program (press 0) \n");
printf("Please enter option number: ");
scanf("%d", num); // Takes the selection to be passed out of the function
return num; // Returns the selection to main
}
void searchLast(char FirstName[][21],char LastName[][21], float Scores[],int NumOfRecords)
{
int j;
char Lname[1][21];
printf("Please enter last name to search for");
for (j=0;j<20;j++)
{
scanf("%s",Lname[0][j]);
}
for(j=0;j<NumOfRecords;j++)
{
if(Lname[0] == LastName[j])
{
printf("%s %s %f",FirstName[j],LastName[j],Scores[j]);
}
}
}
void searchFirst(char FirstName[][21],char LastName[][21], float Scores[],int NumOfRecords)
{
int j;
char Fname[1][21];
printf("Please enter last name to search for");
for (j=0;j<20;j++)
{
scanf("%s",Fname[0][j]);
}
for(j=0;j<NumOfRecords;j++)
{
if(Fname[0] == FirstName[j])
{
printf("%s %s %f",FirstName[j],LastName[j],Scores[j]);
}
}
}
void sortLast(char FirstName[][21],char LastName[][21], float Scores[],int NumOfRecords)
{
int j,x = 0;
int k;
for(j = 0; LastName[j] < LastName[j+1] ; j++)
{
for(k = (j+1) ; k < NumOfRecords; k++)
if (LastName[j] < LastName[k])
{
float temp = 0; // function attempts to sort Arrays saving string
char tempFirst; // values in a veriable to then be reassigned to
char tempLast; // appropriate Array index.
temp = Scores[j];
Scores[j] = Scores[k];
Scores[k] = temp;
tempLast = LastName[j];
LastName[j] = LastName[k];
LastName[k] = tempLast;
tempFirst = FirstName[j]
FirstName[j] = FirstName[k];
FirstName[k] = tempFirst;
}
void sortScore(char FirstName[15][21],char LastName[15][21], float Scores[],int NumOfRecords)
{
int j,x = 0;
int k;
for(j = 0; Scores[j] < Scores[j+1] ; j++)
{
for(k = (j+1) ; k < NumOfRecords; k++)
if (Scores[j] < Scores[k])
{
float temp = 0;
char tempFirst;
char tempLast;
temp = Scores[j];
Scores[j] = Scores[k];
Scores[k] = temp;
tempLast = LastName[j];
LastName[j] = LastName[k];
LastName[k] = tempLast;
tempFirst = FirstName[j]
FirstName[j] = FirstName[k];
FirstName[k] = tempFirst;
}
}
printRecords(FirstName,LastName,Scores,NumOfRecords);
}
void printRecords(char FirstName[][21],char LastName[][21], float Scores[],int NumOfRecords)
{
int j = 0;
for (j = 0; j < NumOfRecords ; j++)
{
printf("%s %s %f \n",FirstName[j],LastName[j],Scores[j]);
}
}
//错误:
1>c:\[....]\meg4545.c(139): warning C4047: '=' : 'char' differs in levels of indirection from 'char *'
1>c:\[....]\meg4545.c(140): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(141): warning C4047: '=' : 'char [21]' differs in levels of indirection from 'char'
1>c:\[....]\meg4545.c(141): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(143): warning C4047: '=' : 'char' differs in levels of indirection from 'char *'
1>c:\[....]\meg4545.c(143): error C2146: syntax error : missing ';' before identifier 'FirstName'
1>c:\[....]\meg4545.c(143): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(144): warning C4047: '=' : 'char [21]' differs in levels of indirection from 'char'
1>c:\[....]\meg4545.c(144): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(146): error C2143: syntax error : missing ';' before 'type'
1>c:\[....]\meg4545.c(150): error C2143: syntax error : missing ';' before 'type'
1>c:\[....]\meg4545.c(162): warning C4047: '=' : 'char' differs in levels of indirection from 'char *'
1>c:\[....]\meg4545.c(163): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(164): warning C4047: '=' : 'char [21]' differs in levels of indirection from 'char'
1>c:\[....]\meg4545.c(164): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(166): warning C4047: '=' : 'char' differs in levels of indirection from 'char *'
1>c:\[....]\meg4545.c(166): error C2146: syntax error : missing ';' before identifier 'FirstName'
1>c:\[....]\meg4545.c(166): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(167): warning C4047: '=' : 'char [21]' differs in levels of indirection from 'char'
1>c:\[....]\meg4545.c(167): error C2106: '=' : left operand must be l-value
1>c:\[....]\meg4545.c(174): error C2143: syntax error : missing ';' before 'type'
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:02.31
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
最佳答案
可能有很多问题中的一个:
这里有一个 char
数组 (LastName[][21]
):
void searchLast(char FirstName[][21],char LastName[][21], float Scores[],int NumOfRecords)
{
...
}
您正尝试在此处复制 char
数组:
LastName[j] = LastName[k];
这不是在 C 中复制字符串的方式。您必须执行如下操作:
strncpy(LastName[j], LastName[k], 21);
编辑
我忘了提及:在 C 中,如果 char
数组以 NULL
('\0'
) 终止,则它们会变成字符串。您必须将字符串传递给 strncpy
才能正常工作。
关于C 函数作业构建传递数组时出现错误 需要帮助 初学者问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22411690/
Github:https://github.com/jjvang/PassIntentDemo 我一直在关注有关按 Intent 传递对象的教程:https://www.javacodegeeks.c
我有一个 View ,其中包含自动生成的 text 类型的 input 框。当我单击“通过电子邮件发送结果”按钮时,代码会将您带到 CalculatedResults Controller 中的 Em
我有一个基本的docker镜像,我将以此为基础构建自己的镜像。我没有基础镜像的Dockerfile。 基本上,基本镜像使用两个--env arg,一个接受其许可证,一个选择在容器中激活哪个框架。我可以
假设我想计算 2^n 的总和,n 范围从 0 到 100。我可以编写以下内容: seq { 0 .. 100 } |> Seq.sumBy ((**) 2I) 但是,这与 (*) 或其他运算符/函数不
我有这个网址: http://www.example.com/get_url.php?ID=100&Link=http://www.test.com/page.php?l=1&m=7 当我打印 $_G
我想将 window.URL.createObjectURL(file) 创建的地址传递给 dancer.js 但我得到 GET blob:http%3A//localhost/b847c5cd-aa
我想知道如何将 typedef 传递给函数。例如: typedef int box[3][3]; box empty, *board[3][3]; 我如何将 board 传递给函数?我
我正在将一些代码从我的 Controller 移动到核心数据应用程序中的模型。 我编写了一个方法,该方法为我定期发出的特定获取请求返回 NSManagedObjectID。 + (NSManagedO
为什么我不能将类型化数组传递到采用 any[] 的函数/构造函数中? typedArray = new MyType[ ... ]; items = new ko.observableArray(ty
我是一名新的 Web 开发人员,正在学习 html5 和 javascript。 我有一个带有“选项卡”的网页,可以使网页的某些部分消失并重新出现。 链接如下: HOME 和 JavaScript 函
我试图将对函数的引用作为参数传递 很难解释 我会写一些伪代码示例 (calling function) function(hello()); function(pass) { if this =
我在尝试调用我正在创建的 C# 项目中的函数时遇到以下错误: System.Runtime.InteropServices.COMException: Operation is not allowed
使用 ksh。尝试重用当前脚本而不修改它,基本上可以归结为如下内容: `expr 5 $1 $2` 如何将乘法命令 (*) 作为参数 $1 传递? 我首先尝试使用“*”,甚至是\*,但没有用。我尝试
我一直在研究“Play for Java”这本书,这本书非常棒。我对 Java 还是很陌生,但我一直在关注这些示例,我有点卡在第 3 章上了。可以在此处找到代码:Play for Java on Gi
我知道 Javascript 中的对象是通过引用复制/传递的。但是函数呢? 当我跳到一些令人困惑的地方时,我正在尝试这段代码。这是代码片段: x = function() { console.log(
我希望能够像这样传递参数: fn(a>=b) or fn(a!=b) 我在 DjangoORM 和 SQLAlchemy 中看到了这种行为,但我不知道如何实现它。 最佳答案 ORM 使用 specia
在我的 Angular 项目中,我最近将 rxjs 升级到版本 6。现在,来自 npm 的模块(在 node_modules 文件夹内)由于一些破坏性更改而失败(旧的进口不再有效)。我为我的代码调整了
这个问题在这里已经有了答案: The issue of * in Command line argument (6 个答案) 关闭 3 年前。 我正在编写一个关于反向波兰表示法的 C 程序,它通过命
$(document).ready(function() { function GetDeals() { alert($(this).attr("id")); } $('.filter
下面是一个例子: 复制代码 代码如下: use strict; #这里是两个数组 my @i =('1','2','3'); my @j =('a','b','c'); &n
我是一名优秀的程序员,十分优秀!