- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须用 C 语言(我是新来的)编写一个程序,以便用户输入行数和列数以及他们想要显示为矩形的字符,例如 6 行和 6 列星号矩形。
这是详细的作业。
The first thing your program will do is print a menu of choices forthe user. You may choose your own version of the wording or order ofchoices presented, but each choice given in the menu must match thefollowing:A function that prompts the user to enter a singlecharacter. The return value of the function be a char and will returnthe character value entered by the user.This return value will bestored in a local variable, C, in main(). The initial default value ofthis character will be ' ' (blank or space character).
A function that prompts the user to enter a numerical value between 1and 15 (inclusive). If the user enters a value outside this range, theuser is prompted to re-enter a value until a proper value is entered.The return value of the function be an int and will return the valueentered by the user. This return value will be stored in a localvariable, N, in main(). The initial default value of this characterwill be 0.
Two "Print Rectangle" functions. Each function will take the currentinteger value N and character value C as input parameters. The returnvalues of these functions will be void. The functions will printrectangles of N lines and columns using the input character C. TheBorder Only function will print the rectangle with the just theborder. The Filled In function will print the rectangle as a solidrectangle. For example, if the integer value N = 6, and the charactervalue C = '*' and the Filled In type is called, the followingrectangle will be printed:
这是到目前为止我的代码。我做错了什么以及我的程序编码是否正确?
#include <stdio.h>
#include <stdlib.h>
char enterSingleChar();
int enterNumValue();
void printRectanlgeOne(int N, char C);
void printRectangleTwo(int N, char C);
int main()
`enter code here`{
char userChoice;
int N = 0;
char C = ' ';
fprintf(stdout, "Please choose one of the following choices below \n");
fprintf(stdout, "Enter/Change Character (C/c)\n");
fprintf(stdout, "Enter/Change Number (N/n) \n");
fprintf(stdout, "Print Rectangle Type 1 (Border Only), enter 1 \n");
fprintf(stdout, "Print Rectangle Type 2 (Filled in), etner 2 \n");
fprintf(stdout, "Quit Program (Q/q) \n");
scanf("%c", &userChoice);
switch(userChoice)
{
case 'C':
case 'c':
enterSingleChar();
break;
case 'N':
case 'n':
enterNumValue();
break;
case '1':
printRectangleOne(N,C);
break;
case '2':
printRectangleTwo(N,C);
break;
break;
case 'Q':
case 'q':
fprintf(stdout, "The program will now quit\n");
exit(1);
default:
break;
}
}
char enterSingleChar()
{
char singleChar = ' ';
fprintf(stdout, "Please enter a single character \n");
scanf("%c", &singleCharC);
return singleChar;
}
int enterNumValue()
{
int numValue;
fprintf(stdout, "Please enter a numerical value between 1 and 15 inclusively \n");
scanf("%d", &numValue);
while(numValue <= 1 || numValue >= 15)
{
fprintf(stdout, "You have entered an invalid num \n");
fprintf(stdout, "Please try again \n");
fprintf(stdout, "Please enter a numerical value between 1 and 15 inclusively \n");
scanf("%d", &numValue);
}
return numValue;
}
void printRectangleOne(int N, char C)
{
int i;
int j;
for(i = 0; i <= N; i++)
{
fprintf(stdout, &C);
for(j = 0; i <= N; i++)
{
fprintf(stdout, &C);
}
}
printf();
}
void printRectangleTwo(int N, char C)
{
}
最佳答案
如果您尝试在启用所有警告的情况下编译该代码,它会开始抛出错误,您应该在继续之前更正这些错误:
test.c:10:5: error: stray ‘`’ in program
`enter code here`{
^
test.c: In function ‘main’:
test.c:10:6: error: unknown type name ‘enter’
`enter code here`{
^
还有:
test.c: In function ‘main’:
test.c:34:25: warning: implicit declaration of function ‘printRectangleOne’ [-Wimplicit-function-declaration]
printRectangleOne(N,C);
^
test.c: In function ‘enterSingleChar’:
test.c:53:22: error: ‘singleCharC’ undeclared (first use in this function)
scanf("%c", &singleCharC);
我看到的一个问题是,当使用 scanf
从标准输入读取时,Enter 键也会被放入队列。
所以有人问你,
Enter one character:
Enter another character:
然后您输入:
A 输入 B 输入
并且您期望这两个字符是 A 和 B。输入队列中的实际内容可能是,具体取决于平台(我不确定):
A\r\nB\r\n (*six* characters!)
A\nB\n four characters
A\rB\r four characters
此外,如果您使用这些虚假字符之一(例如“\n”,即换行符)在字符“C”周围绘制一个 3x3 矩形,您实际上将发送到输出三个空行(顶行)、一个空行(中线左边框)、一个“C”、另外四个空行。
这可能非常令人费解。
您没有在问题中说明您的问题实际上是什么,但如果出现上述任何症状,请检查您的输入例程。
void printRectangleOne(int N, char C)
{
int i;
int j;
for (i = 0; i <= N; i++)
{
// Why do you output this C here?
fprintf(stdout, &C);
// You are checking and incrementing i here, not j.
for(j = 0; i <= N; i++)
{
// fprintf does not work this way. Use
// putchar(C);
// instead.
fprintf(stdout, &C);
}
}
// I don't think this is going to work. Use either
// putchar('\n') or printf("\n") to get a newline.
printf();
}
关于根据用户输入的字符创建一个矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35255260/
我正在尝试将外框内的框(坐标)放入。我已经使用交集联合方法完成了工作,并且我希望其他方法也可以这样做。 另外,能否请您告诉我如何比较这两个内盒? 最佳答案 通过比较边界框和内部框的左上角和右下角的坐标
我希望输出看起来像这样: 如何安排这些循环以获得两个三角形数字模式?我该如何改进我的代码。 JAVA 中的新功能:-) for (int i = 1; icount; num--) {
我需要将 map 边界存储在 MySQL 数据库中。我花了一些时间在地理空间扩展的文档上,但是学习所有相关信息(WKT、WKB 等)很困难,而且就我而言没有必要。我只需要一种方法来存储坐标矩形并稍后将
在 gnuplot 中,我可以通过绘制一个矩形 set object rect from x0,y0 to x1,y1 如何从文件中读取坐标 x0,x1,y0,y1? 最佳答案 一种方法是将设置矩形的
我正在尝试创建一个填充了水平线或垂直线的矩形。 矩形的宽度是动态的,所以我不能使用图像刷。 如果有人知道任何解决方案,请告诉我。 最佳答案 我想出了一个直接的方法来做到这一点;最后,我使用以下视觉画笔
这个 SVG 在所有浏览器中看起来都很模糊,在所有缩放级别。 在 Chrome、Safari 和 Firefox 中,它看起来像这样: 如果放大,您可以看到笔画有两个像素的宽度,即使默认笔画
我正在尝试在ggplot2图上添加多个阴影/矩形。在这个可重现的示例中,我只添加了3,但是使用完整数据可能需要总计一百。 这是我的原始数据的子集-在名为temp的数据框中-dput在问题的底部:
我有一个包含驻留在 Viewport3D 中的 3D 对象的应用程序,我希望用户能够通过在屏幕上拖动一个矩形来选择它们。 我尝试在 Viewport3D 上应用 GeometryHitTestPara
如何才能使 WPF 矩形的顶角变成圆角? 我创建了一个边框并设置了 CornerRadius 属性,并在边框内添加了矩形,但它不起作用,矩形不是圆角的。 最佳答案 您遇到的问题是矩形“溢
我正在尝试使用此 question 中的代码旋转 Leaflet 矩形。 rotatePoints (center, points, yaw) { const res = [] const a
我有以下图像。 this image 我想删除数字周围的橙色框/矩形,并保持原始图像干净,没有任何橙色网格/矩形。 以下是我当前的代码,但没有将其删除。 Mat mask = new Mat(); M
我发现矩形有些不好笑: 比方说,给定的是左、上、右和下坐标的值,所有这些坐标都旨在包含在内。 所以,计算宽度是这样的: width = right - left + 1 到目前为止,一切都很合乎逻辑。
所以,我一直在学习 Java,但我还是个新手,所以请耐心等待。我最近的目标是图形化程序,这次是对键盘控制的测试。由于某种原因,该程序不会显示矩形。通常,paint() 会独立运行,但由于某种原因它不会
我正在阅读 website 中的解决方案 3 (2D)并试图将其翻译成java代码。 java是否正确请评论。我使用的是纬度和经度坐标,而不是 x 和 y 坐标(注意:loc.getLongitude
我似乎无法删除矩形上的边框!请参阅下面的代码,我正在使用 PDFannotation 创建链接。这些链接都有效,但每个矩形都有一个边框。 PdfAnnotation annotation; Recta
如何在保持原始位图面积的同时将位图旋转给定的度数。即,我旋转宽度:100,高度:200 的位图,我的最终结果将是一个更大的图像,但旋转部分的面积仍然为 100*200 最佳答案 图形转换函数非常适合这
我创建了矩形用户控件,我在我的应用程序中使用了这个用户控件。在我的应用程序中,我正在处理图像以进行不同的操作,例如从图像中读取条形码等。这里我有两种处理图像的可能性,一种正在处理整个图像,另一个正在处
好的,我该如何开始呢? 我有一个应用程序可以在屏幕上绘制一些形状(实际上是几千个)。它们有两种类型:矩形和直线。矩形有填充,线条有描边 + 描边厚度。 我从两个文件中读取数据,一个是顶部的数据,一个是
简而言之: 我正在致力于使用 AI 和 GUI 创建纸牌游戏。用户的手显示在游戏界面上,我尚未完成界面,但我打算将牌面图像添加到屏幕上的矩形中。我没有找到 5 种几乎相同的方法,而是找到了一篇类似的文
我遇到了麻烦。我正在尝试使用用户输入的数组列表创建条形图。我可以创建一个条,但只会创建一个条。我需要所有数组输入来创建一个条。 import java.awt.Color; import java.a
我是一名优秀的程序员,十分优秀!