Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
#include <unistd.h>
2
#include <stropts.h>
3
#include <iomanip>
4
#include "keystream.h"
5
6
using namespace std;
7
8
int main()
9
{
10
int x;
11
12
kin >> x;
13
14
cout << x << endl;
15
}
16
17