Advertisement
tei123

dziwne rzeczy

Sep 26th, 2016
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int dodaj(int a, int b)
  7. {
  8. cin >> a;
  9. cin >> b;
  10. int s=a+b;
  11. cout << endl;
  12. cout << s;
  13. }
  14.  
  15.  
  16. int dodaj(int a, int b, int c)
  17. {
  18. cin >> a;
  19. cin >> b;
  20. cin >> c;
  21. int s=a+b+c;
  22. cout << endl;
  23. cout << s;
  24. }
  25.  
  26. int dodaj(int a, int b, int c, int d)
  27. {
  28. cin >> a;
  29. cin >> b;
  30. cin >> c;
  31. cin >> d;
  32. int s=a+b+c+d;
  33. cout << endl;
  34. cout << s;
  35. };
  36.  
  37.  
  38. //Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa
  39. int dodaj(string a, string b)
  40. {
  41. cin >> a;
  42. cin >> b;
  43. string s=a+b;
  44. cout << endl;
  45. cout << s;
  46. cout << endl;
  47. };
  48. //Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa//Przerwa
  49.  
  50. int wys(string a)
  51. {
  52. cout << "string";
  53. cout << endl;
  54. cin >> a;
  55. cout << endl;
  56. cout << a;
  57. cout << endl;
  58. }
  59. int wys(string a,string b)
  60. {
  61. cout << "string2" ;
  62. cout << endl;
  63. cin >> a;
  64. cout << endl;
  65. cout << a;
  66. cout << endl;
  67. cout << endl;
  68. cin >> b;
  69. cout << endl;
  70. cout << b;
  71. cout << endl;
  72. }
  73. int wys(float x1)
  74. {
  75. cout << "float";
  76. cout << endl;
  77. cin >> x1;
  78. cout << endl;
  79. cout << a;
  80. cout << endl;
  81. }
  82.  
  83.  
  84.  
  85.  
  86. int main(int argc, char *argv[])
  87. {
  88. /*int co;
  89. cout<<"Ile liczb chcesz dodac? (2-4)";
  90. cin>>co;
  91. if (co==2)
  92. {
  93. dodaj(1,1);
  94. };
  95. if (co==3)
  96. {
  97. dodaj(1,1,1);
  98. };
  99. if (co==4)
  100. {
  101. dodaj(1,1,1,1);
  102. };
  103.  
  104.  
  105. dodaj("a","a");
  106. */
  107. float x1,x2;
  108. wys("a");
  109. wys("a","a");
  110.  
  111.  
  112. system("PAUSE");
  113. return EXIT_SUCCESS;
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement