What is the easiest way to get an int in a console app?

前端 未结 5 1253
暖寄归人
暖寄归人 2021-01-04 08:00

I want to process user input as an integer, but it seems as though C has no way to get an int from stdin. Is there a function to do this? How would I go about getting an int

5条回答
  •  忘掉有多难
    2021-01-04 08:58

    #include 
    
    int n;
    scanf ("%d",&n);
    

    See http://www.cplusplus.com/reference/clibrary/cstdio/scanf/

提交回复
热议问题