std::string str = "net send host1 blub";
system(str.c_str());
so compiliert das auch ...
Nein, str ist ne lokale Variable, die ist nicht in std...
Brauchst du das etwa auch ?
http://mitglied.lycos.de/eemex/googletut/
;-)
Hey, ich hab mich mal drum gekümmert!
Hab en Quellcode der geht!
Hier bitte:
// Net send - Programm
// by Hardscore
#include <iostream>
#include <string>
#include <stdio.h>
#include <conio.h>
using namespace std;
void fEinfuehrung()
{
cout << "Net - send Programm..." << endl;
cout << "by Hardscore (2004)" << endl;
}
void fComputername()
{
string vstringComputername; // HINTER der {
cout << "An welchen Computer soll eine Nachricht verschickt werden...? (COMPUTERNAME): " << endl;
cin >> vstringComputername;
}
void fNachricht()
{
string vstringNachricht;
printf ("Nachricht: ");
cin >> vstringNachricht;
}
void fAnzahl()
// Wie oft soll die Nachricht verschickt werden...
{
int vintAnzahl;
printf ("Wie oft soll die Nachricht verschickt werden...?");
cout << "Anzahl: ";
cin >> vintAnzahl;
}
int main()
{
double vintWieoftnoch;
vintWieoftnoch = 1;
// Jetzt werden alle zuvor definierten Funktionen aufgerufen...
fEinfuehrung();
fComputername();
fNachricht();
fAnzahl();
}
Viel Spass noch!
MFG "kaitec"(r) and "The Black-Hacker's"(r)
Präfixe sind halt ne tolle Sache, weil man dann ja gleich vom Namen auf den Typ schliessen kann:
double vintWieoftnoch;
Jetzt fehlt nur noch: float fMyFunx(float fFloatParam)...
Du hast jetzt 2 Möglichkeiten:
1. Du versuchst, aus dieser Hinweis-Suppe und dem Rest des Internet, oder einem Buch die gebrauchte Information zu ziehen
2. Du gibst auf, und akzeptierst, dass C++ > du.
t.t
Bist du eigentlich immer so überheblich?
« c++ in html verwenden | Borland C / C++ Programme » | ||