This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/cplbexam/iostream/istream/rshnum.cpp

15 lines
281 B
C++

#include <iostream.h>
void main( void ) {
int a;
float b;
cout << "Enter an integer (decimal number): " << endl;
cin >> a;
cout << a << endl;
cout << "Enter an float-point value (decimal number): " << endl;
cin >> b;
cout << b << endl;
}