000
24.04.2006, 19:57 Uhr
jeller
|
hier ist mein längster sourcecode .vllt gibt ihr mir ein paar tipps und verbesserungs vorschläge .
C++: |
#include <iostream> #include <stdio.h> using namespace std; int main () { char chAuswahl; cout<<"Hallo hier kannst du alle meine quelltexte erstellen lassen .\n Die erstellte datei wird dort erscheinen wo diese datei ist.\n Welcher quell text soll erstellt werden ?:\n(H)allowelt\n(S)hutdown\n(I)f-block\n(F)open"<<endl; cin>>chAuswahl; if ((chAuswahl == 'h')||(chAuswahl == 'H')) { FILE * pFile; pFile = fopen ("HalloWelt1.0.cpp","wt"); if (pFile!=NULL) { fputs ("/*\nName:Hallowelt1.0\nauthor:jeller\ndate:15.4.2006 15:15\n*/\n#include <iostream>\n using namespace std; \n int main () \n \{ \n cout <<\"Hallo Welt\"<<endl;\n system (\"pause\");\n return 0;\n\}",pFile); fclose (pFile); } } else if ((chAuswahl == 's')||(chAuswahl == 'S')) { FILE * pFile; pFile = fopen ("shutdown1.0.cpp","wt"); if (pFile!=NULL) { fputs ("/*\nName:shutdown1.0\nauthor:jeller\ndate:16.4.2006 16:00\n*/\n#include <iostream>\n using namespace std; \n int main () \n \{ \n cout <<\"cya\"<<endl;\n system (\"shutdown -s\");\n return 0;\n\}",pFile); fclose (pFile); } } else if ((chAuswahl =='i')||(chAuswahl == 'I')) { FILE * pFile; pFile = fopen ("If block1.0.cpp","wt"); if (pFile!=NULL) { fputs ("/*\nName:ifblock1.0\nauthor:jeller\ndate:19.4.2006 17:28\n*/\n#include <iostream>\n using namespace std; \n int main () \n \{ \n char chAuswahl;\ncout<<\"(H)allo Welt \\ (P)rogramm beenden \\(C)omputer ausschalten\"<<endl; \n cin>>chAuswahl;\n if ((chAuswahl=='H')||(chAuswahl=='h'))\n\{\ncout<<\"Hallo Welt\"<<endl;\nsystem (\"pause\");\n\}\n if ((chAuswahl == 'p')||(chAuswahl == 'P'));\n\{\ncout<<\"Viel Spaß noch\"<<endl;\n\}\n if ((chAuswahl == 'c')||(chAuswahl == 'C'));\n\{\ncout <<\"cya\"<<endl;\nsystem (\"shutdown -s\");\n\}\n return 0;\n}",pFile); fclose (pFile); } } else if ((chAuswahl =='f')||(chAuswahl == 'F')) { FILE * pFile; pFile = fopen ("fopen1.0.cpp","wt"); if (pFile!=NULL) { fputs ("/*\nName:fopen1.0\nauthor:jeller\ndate:19.4.2006 17:28\n*/\n#include <iostream>\n#include <stdio.h>\n using namespace std; \n int main () \n \{\n char chAuswahl; \ncout<<\"Soll halloWelt.(t)xt oder hallowelt.(c)pp erstellt werden ?\"<<endl;\ncin>> chAuswahl;\n if ((chAuswahl=='t')||(chAuswahl=='T'))\n{ FILE * pFile;\npFile = fopen (\"hallowelt.txt\",\"wt\");\nif (pFile!= NULL)\n{\nfputs (\"HallWelt\",pFile);\nfclose (pFile);\n}\n}\nelse if ((chAuswahl=='c')||(chAuswahl=='C'))\n{ FILE * pFile ; \npFile = fopen (\"HalloWelt.cpp\",\"wt\");\nif (pFile != NULL)\n{\nfputs (\"hallowelt\",pFile);\nfclose (pFile);\n}\n}return 0;\n} ",pFile); fclose (pFile); } } return 0; }
|
hoffentlich sag ihr nicht Dieser Post wurde am 24.04.2006 um 20:02 Uhr von jeller editiert. |