Use C++ to write a code that quickly reads input data

#include<stdio.h> int main(){ int n; printf("Please enter the data to be read:"); scanf("%d",&n); printf("The data you entered is: %d ",n); return 0; }

Guess you like

Origin blog.csdn.net/weixin_35752233/article/details/129510670