- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个函数 (asterisksDisplay
),它显示一个由星号组成的实心矩形,其边在整数参数中指定为 row
和 column
,这是从用户那里获取的。下面的程序完美运行。
#include <stdio.h>
void asterisksDisplay (int row, int column);
int main (void)
{
int a=0;
int b=0;
printf("Please enter sides of your shape: ");
scanf("%d%d", &a, &b);
printf("\nYour shape is: \n");
asterisksDisplay(a, b);
}
void asterisksDisplay (int row, int column)
{
for (int i = 1; i <= row; i++) {
for (int p = 1; p <= column; p++) {
printf("*");
}
printf("\n");
}
}
当我尝试将星号的这个函数修改为用户给定字符显示的函数时,编译器以某种方式跳过显示该字符。
#include <stdio.h>
void asterisksDisplay (int row, int column, char character);
int main (void)
{
int a=0;
int b=0;
char c;
printf("Please enter sides of your shape: ");
scanf("%d%d", &a, &b);
printf("\nplease enter the character to be filled: ");
scanf("%s", &c);
printf("\n");
asterisksDisplay(a, b, c);
}
void asterisksDisplay (int row, int column, char character)
{
for (int i = 1; i <= row; i++) {
for (int p = 1; p <= column; p++) {
printf("%c", character);
}
printf("\n");
}
}
解决这个问题的解决方案是什么?
最佳答案
改变
scanf("%s", &c);
至
scanf(" %c", &c);
^^-----------------------(i)
^^------------------------- (ii)
将转换说明符从 %s
更改为 %c
,如 (i):因为 c
是 char
类型。
我们需要转义之前输入的换行符,即转换说明符之前的额外空格,它匹配并丢弃缓冲区中存在的任何前导空格输入。
关于c - 显示星号与使用函数显示字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53282985/
*args 和 **kwargs 是什么意思? def foo(x, y, *args): def bar(x, y, **kwargs): 最佳答案 *args 和 **kwargs 是一个常见的惯
*args 和 **kwargs 是什么意思? def foo(x, y, *args): def bar(x, y, **kwargs): 最佳答案 *args 和 **kwargs 是一个常见的惯
*args 和 **kwargs 是什么意思? def foo(x, y, *args):def bar(x, y, **kwargs): 最佳答案
在python文档中2.4.3. Formatted string literals ,似乎可以在 f 字符串的 {} 中写一个星号后跟一个表达式,但我找不到如何使用它。 那是什么以及如何使用它?它是
这些函数定义中的*args和**kwargs是什么意思? def foo(x, y, *args): pass def bar(x, y, **kwargs): pass 参见Wha
这些函数定义中的*args和**kwargs是什么意思? def foo(x, y, *args): pass def bar(x, y, **kwargs): pass 参见Wha
这个问题在这里已经有了答案: Delegated yield (yield star, yield *) in generator functions (3 个答案) 关闭 6 年前。 假设我创建了
我有时注意到使用 *偶尔搜索光标下的单词会有略微不同的行为(通常是当我在不同的计算机之间切换时)。问题是当我搜索前面有 * 的单词时(如 c++ 指针)。例如: MyPointer *foo; ...
This question already has answers here: Keyword only parameter (1个答案) Python documentation for os.re
这是我的数据: dput(dt) structure(c(15236000, 0, 0, 0, 0, 36722900, 45971100, 0, 0, 0, 0, 99067
所以我有一个看起来像这样但有 6k 行的数据框: AWC, LocationID 333, *Yukon 485, *Lewis Rich 76, *Kodiak 666, Kodiak 54, *R
我有一个简单的问题。我想列出我们可以使用关键字星号(或星号)* 的所有场景。 我只知道这些场景: Select * from Customers; Select Count(*) from Custo
瑞安·贝茨的Railscast about git ,他的 .gitignore 文件包含以下行: tmp/**/* 使用双星号后跟一个星号的目的是什么:**/*?简单地使用 tmp/* 而不是 tm
我想以这种方式选择带有 class="x"的元素的所有后代元素: .x * { color: red; } a b
这个问题在这里已经有了答案: What does ** (double star/asterisk) and * (star/asterisk) do for parameters? (25 个答案
最近我在 Programming Paradigms 上看到了这个视频和教授。使用星号、星形和符号等术语。 这就是他如何使用这些运算符的: int i = 37; float f = *(float*
我尝试在自定义按钮中居中对齐符号星号 (*),但我做不到。 如何像其他字符一样垂直居中对齐(1,2...)? 最佳答案 只需使用不同的字符。除了 * (ASTERISK U+002A),还有许多其他类
结论 概括的来说,就是对修饰的变量进行拆分, 对修饰的形式参数进行参数聚集。 单*号,将被修饰的变量按元素方式拆分, 对修饰的形式参数进行参数聚集。 双**号,将被修饰的变量按键值对进行拆分, 对
如果我想保持功能,并且不想在中间使用 *,那么等效的替代函数是什么?例如, import operator as op print(op.eq(*map(str.upper, ['a', 'A']))
我窥视 ng2-dropdown 我可以看到(ng2-dropdown-menu.ts) 除其他事项外 transition('hidden => visible', [
我是一名优秀的程序员,十分优秀!