Posts by Guilherme Almeida • 51 points
1 post
-
5
votes3
answers7251
viewsA: How to read keyboard numbers in C#?
Well, you didn’t specify the language, so let’s go: C To read a number, I will assume that it is an int, in C the following code is used: int meuNumero; scanf("%d", &meuNumero); C++ To read a…