- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想将空格分隔的整数读取到一个数组中,当我按回车键时它应该在任何时间点停止读取,如何为这个程序实现循环请帮我解决这个问题。我试过下面的代码,但它不起作用。以及如何再次阅读。
#include<stdio.h>
int main()
{
int arr[30];
int j=0;
while(1)
{
int d;
scanf("%d",&d);
arr[j++]=d;
if(d=='\n')break;
}
return 0;
}
提前致谢
最佳答案
您的问题是 scanf
在查找下一项时会自动跳过所有空格(空格、制表符、换行符)。您可以通过特别要求读取换行符来区分换行符和其他空格:
int main() {
int arr[30]; // results array
int cnt = 0; // number of results
while (1) {
// in the scanf format string below
// %1[\n] asks for a 1-character string containing a newline
char tmp[2]; // buffer for the newline
int res = scanf("%d%1[\n]", &arr[cnt], tmp);
if (res == 0) {
// did not even get the integer
// handle input error here
break;
}
if (res == 1) {
// got the integer, but no newline
// go on to read the next integer
++cnt;
}
if (res == 2) {
// got both the integer and newline
// all done, drop out
++cnt;
break;
}
}
printf("got %d integers\n", cnt);
return 0;
}
这种方法的问题在于它只能识别整数后面的换行符,并且会自动跳过仅包含空格的行(并从下一行开始读取整数)。如果这是 Not Acceptable ,那么我认为最简单的解决方案是将整行读入缓冲区并解析该缓冲区中的整数:
int main() {
int arr[30]; // results array
int cnt = 0; // number of results
char buf[1000]; // buffer for the whole line
if (fgets(buf, sizeof(buf), stdin) == NULL) {
// handle input error here
} else {
int pos = 0; // current position in buffer
// in the scanf format string below
// %n asks for number of characters used by sscanf
int num;
while (sscanf(buf + pos, "%d%n", &arr[cnt], &num) == 1) {
pos += num; // advance position in buffer
cnt += 1; // advance position in results
}
// check here that all of the buffer has been used
// that is, that there was nothing else but integers on the line
}
printf("got %d integers\n", cnt);
return 0;
}
另请注意,当行中的整数超过 30 个时,上述两种解决方案都会覆盖结果数组。如果第二个解决方案的长度超过缓冲区的长度,那么第二个解决方案也会留下一些未读的输入行。根据您输入的来源,这两个问题都可能是需要在实际使用代码之前解决的问题。
关于c - 如何读取数组中int的随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27886343/
我编写了一个函数来随机从 [-10,10] 中获取一对。 import System.Random main = do { s State g a randomSt = S
好的,我了解如何在 Scala 中实现随机数生成器以及如何设置生成的随机数的上限,但我对如何更改下限感到困惑。例如: var computerGuess= scala.util.Random
我写了一个函数来从 [-10,10] 中随机得到一对。 import System.Random main = do { s State g a randomSt = St
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我正在做一个项目,我需要在其中生成 8 个随机数。由于某种原因,我遇到随机数部分非常耗时的问题。 8 个随机数的意思是我需要一个由数字 0-9 组成的 8 个字符长的字符串。例如 01234567 或
这个问题已经有答案了: Why do I always get the same sequence of random numbers with rand()? (12 个回答) 已关闭 9 年前。
我看到这个问题可能已经在这里得到回答:Random using WELL512 但是,它对用户不太友好,也没有提供如何在“真实世界”的代码片段中使用它的示例。 这是我目前拥有的: #define m
我想知道是否有人可以为我澄清这一行。 Create a function die(x) which rolls a die x times keeping track of how many time
我正在制作一款有 6 名防守球员的足球比赛。我将这段代码设置为随机让他们都向四分卫移动。 我想知道是否有更好的方法来做到这一点。我知道必须有一种方法可以在没有这么多 if 语句的情况下循环它,但我对
在以下位置:http://www.fredosaurus.com/notes-cpp/misc/random.html 它提到如果我们想生成一个1-10范围内的随机数,我们可以这样做: r = (ra
如何在 Linux 和 C++ 中使用随机数? 我找到了一些我想使用的代码,它有一行 srand((unsigned)time(0));//seed 但是 gcc 说 board.cpp:94:24:
这个问题在这里已经有了答案: Generating random whole numbers in JavaScript in a specific range (40 个答案) 关闭 9 年前。
我有以下脚本: Timer=0; function countdown(auctionid){ var auctions; var divs; Timer=Timer+1;
利用oracle的dbms_random包结合rownum来实现,示例如下,随机取499户: select * from ( select * from busi.t_ar_
我需要获取随机数,但它不应该等于之前的数字。这是我的一段代码。但这不起作用。 function getNumber(){ var min = 0; var max = 4; var i;
我对 Haskell 还很陌生。我有一个数据类型: data Sentence= Prop Int | No Sentence | And [Sentence]
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
这个问题已经有答案了: How do I generate random integers within a specific range in Java? (73 个回答) 已关闭 7 年前。
function getRandomArbitrary(min, max) { var r = Math.floor(Math.random() * (max - min + 1) + m
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Generate random number with non-uniform density 我尝试识别/
我是一名优秀的程序员,十分优秀!