para que lo ejecute como shell seria algo como
Código (vbnet) [Seleccionar]
shell ("cmd /c " & textbox1.text)
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúshell ("cmd /c " & textbox1.text)
#include <iostream>
int main () {
char c;
while (;;) {
cin >> c;
cout << "Has escrito " << c << endl;
}
}
int main()
{
while (;;) {
int a,b,c;
cout<<"type first number"<<endl;
cin>>a;
cout<<"type first number"<<endl;
cin>>b;
cout<<"type first number"<<endl;
cin>>c;
if ((a>=b) && (a>=c) )
{
cout<<"the biggest is: "<<a;
}
if ((b>=a) && (b>=c) )
{
cout<<"the biggest is: "<<b;
}
if ((c>=b) && (c>=a) )
{
cout<<"the biggest is: "<<c;
}
getch();
return 0;
}
}