Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. int main()
  2. {
  3. string pasirinkimas,baigimas;
  4. cout << "Pasirinkite norima funkcija: " << endl;
  5. cout << "1. Duomenu atvaizdavimas kompiuterio ekrane" << endl << endl;
  6. cout << "2. Duomenu ivedimas" << endl << endl;
  7. cout << "3. Duomenu koregavimas" << endl << endl;
  8. cout << "4. Duomenu ismetimas" << endl << endl;
  9. cout << "5. Saraso rikiavimas" << endl << endl;
  10. cout << "6. Paieska pagal tyrimo data" << endl << endl;
  11. cout << "7. Programos pabaigimas" << endl << endl;
  12. cout << "8. Isvedimas i faila" << endl << endl;
  13. cout << "Pasirinkite norimos funkcijos skaiciu: " << endl;
  14. while(true)
  15. {
  16. getline (cin, pasirinkimas);
  17.  
  18. if (pasirinkimas == "1")
  19. {
  20.  
  21. }
  22. else if (pasirinkimas == "2")
  23. {
  24.  
  25. }
  26.  
  27. else if (pasirinkimas == "3")
  28. {
  29.  
  30. }
  31.  
  32. else if (pasirinkimas == "4")
  33. {
  34.  
  35. }
  36. else if (pasirinkimas == "5")
  37. {
  38.  
  39.  
  40. }
  41. else if (pasirinkimas == "6")
  42. {
  43.  
  44. }
  45.  
  46. else if (pasirinkimas == "7")
  47. {
  48.  
  49.  
  50. }
  51. else if (pasirinkimas == "8")
  52. {
  53. cout << "Duomenu isvedimas i faila" << endl;
  54.  
  55. }
  56. cout << endl;
  57. }
  58. _getch();
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement