Horje
data type c++ Code Example
data type c++
python
#include <iostream>
#include <cstdio>
using namespace std;

int main() {
    // Complete the code.
    int a;
    long l; char c;
    float  f; double d;
    cin>>a>>l>>c>>f>>d;
    cout<<a<<endl<<l<<endl<<c<<endl;
    cout.precision(3);
    cout<<fixed<<f<<endl;
    cout.precision(9);
    cout<<fixed<<d;
    return 0;
}




Cpp

Related
lap trinh file explorer c++ Code Example lap trinh file explorer c++ Code Example
C++ Volume of a Cube Code Example C++ Volume of a Cube Code Example
add comment in c/c++ Code Example add comment in c/c++ Code Example
inorder to postorder converter online Code Example inorder to postorder converter online Code Example
can derived class access base class non-static members without object of the base class Code Example can derived class access base class non-static members without object of the base class Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8