Συντονιστής: konnn



/*
* ask1.cpp
*
* Created on: Nov 8, 2009
* Author: lefteris
*/
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
unsigned int x,y;
cout<<"dose enan arithmo:";
cin>>x;
for(int z=1; z<=200; z++)
{
y=z*x;
cout<<setw(8)<<y;
}
}Description Resource Path Location Type
make: *** [4ask1] Error 1 4ask1 line 0 C/C++ Problem
undefined reference to `main' 4ask1 line 109, external location: /build/buildd/eglibc-2.10.1/sysdeps/x86_64/elf/start.S C/C++ Problem

g++ helloworld.cpp -ο helloworld 



./ask3.cpp:8:16: warning: conio: No such file or directory
../ask3.cpp: In function ‘int main()’:
../ask3.cpp:15: error: ‘getche’ was not declared in this scope
make: *** [ask3.o] Error 1
