什么是c中的unsigned int?

时间:2017-11-16 19:05:55

标签: c variables

我有一些我必须学习的代码,而且我不理解什么是unsigned int以及它是如何工作的。

ui <- fluidPage(
          sliderInput(inputId = "slider", 
          label = "My number", 
          min = 300, 
          max = 19000,
          value = 5000),
          htmlOutput("mytext")
                   )

server <- function(input, output) {
          output$mytext <- renderText({
          paste(capture.output(print(acme, "cost", "p")),collapse = "<br/>")
       })
       }

shinyApp(ui = ui, server = server)

像这样。

1 个答案:

答案 0 :(得分:-1)

C中的unsigned int是具有非负值的数据类型。 (例如,0,1,2,3,4 ......)

相关问题