本文介绍了我想要你的帮助(在C中)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是韩国人。所以,这个背景是错误的....



我想要一些数字(逗号分隔)或什么都没有。

我可以(scanf_s )功能和读取数字

但我什么都看不懂(没有输入并按回车)



如何解决我的问题?



我尝试过:



做{

scanf_s(%d,& mints [i]);

mintcount ++;

i ++;

} while( getc(stdin)==',');


$ C $ b in C

I'm korean. so, this context is something wrong....

I want some numbers(comma seperated) or nothing.
I can (scanf_s)function and read the numbers
but I can't read nothing(no input and press enter)

how solve the my question?

What I have tried:

do {
scanf_s("%d", &mints[i]);
mintcount++;
i++;
} while (getc(stdin) == ',');

in C

推荐答案


这篇关于我想要你的帮助(在C中)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 00:42