Introduction - If you have any usage issues, please Google them yourself
First, we need #include <stdio.h>int scanf (const char *format,...); scanf () function is formatted input function, which reads input information from the standard input device (keyboard). The first parameter format is a constant string. If the string contains "%" symbol, we use the following parameters to match, for example, scanf ("%d%d", &a, &b).