Create main.cpp

This commit is contained in:
Saturneric 2020-09-01 00:09:02 +08:00
parent a9ef4ca0b5
commit 9704a94879

23
main.cpp Normal file
View File

@ -0,0 +1,23 @@
//
// main.cpp
// My first cpp program
//
// Created by Eric on 16-2-11.
// Copyright (c) 2016年 Bakantu Eric. All rights reserved.
//
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin ("data.in");
ofstream fout ("data.out");
int main(int argc, const char * argv[]) {
// insert code here...
int a,b;
fin >> a;
b = a+1;
fout << b << endl;
return 0;
}