The site is loading…

https://docs.google.com/document/d/1B-kSmTuQu89YU8XOb72IlyRp3PL1NpzvBGdLt4UxfcE/edit

  1. #include <iostream>
  2. #include <vector>
  3. #include <cstdlib>
  4.  
  5. using namespace std;
  6.  
  7. void beolvasas(vector< vector<int> > &jegyek);
  8. int beolvas_egesz(const string uzenet, const string hibauzenet);
  9. int beolvas_jegy(const int i, const int j);
  10. bool fel11a(const vector< vector<int> > jegyek);
  11. bool csupaotos(const int i, const vector< vector<int> > jegyek);
  12.  
  13. int main(){
  14. 	vector< vector<int> > jegyek; // a két záró kacsacsõr közé mindenképp kell a szóköz
  15. 	bool van;
  16.  
  17. 	beolvasas(jegyek);
  18. 	van = fel11a(jegyek);
  19. 	if (van){
  20.     	cout << "Van" << endl;
  21. 	} else {
  22.     	cout << "Nincs" << endl;
  23. 	}
  24.  
  25. 	return 0;
  26. }
  27. bool fel11a(const vector< vector<int> > jegyek){
  28. 	int i=0;
  29. 	int n=jegyek.size();
  30. 	while(i<=(n-1) && !csupaotos(i, jegyek)){
  31.     	i++;
  32. 	}
  33. 	return i<=n-1;
  34. }
  35. bool csupaotos(const int i, const vector< vector<int> > jegyek){
  36. 	int j=0;
  37. 	int m=jegyek[i].size();
  38. 	while((j<=(m-1)) && (jegyek[i][j]==5)){
  39.     	j++;
  40. 	}
  41. 	return j>(m-1);
  42. }
  43.  
  44. void beolvasas(vector< vector<int> > &jegyek){
  45. 	int n, m;
  46.  
  47. 	n = beolvas_egesz("Hany diak: ", "Nem negativ kell!");
  48. 	m = beolvas_egesz("Hany targy: ", "Nem negativ kell!");
  49.  
  50. 	jegyek.resize(n);
  51. 	for(int i=0; i<n; i++){
  52.     	jegyek[i].resize(m);
  53.     	for(int j=0; j<m; j++){
  54.         	jegyek[i][j] = beolvas_jegy(i,j);
  55.     	}
  56. 	}
  57. }
  58. int beolvas_egesz(const string uzenet, const string hibauzenet){
  59. 	int n;
  60. 	bool hiba;
  61.  
  62. 	do{
  63.     	cout << uzenet;
  64.     	string str;
  65.     	cin >> str;
  66.     	n = atoi(str.c_str()); // atof float-hoz
  67.     	hiba = n==0 && str!="0" || n<0;
  68.     	if(hiba){
  69.         	cout << hibauzenet << endl;
  70.     	}
  71. 	} while(hiba);
  72.  
  73. 	return n;
  74. }
  75. int beolvas_jegy(const int i, const int j){
  76. 	int n;
  77. 	bool hiba;
  78.  
  79. 	do{
  80.     	cout << i+1 << ". diak " << j+1 << ". jegye: ";
  81.     	string str;
  82.     	cin >> str;
  83.     	n = atoi(str.c_str()); // atof float-hoz
  84.     	hiba = n==0 && str!="0" || n<1 || n>5;
  85.     	if(hiba){
  86.         	cout << "1 es 5 kozott kell lennie!" << endl;
  87.     	}
  88. 	} while(hiba);
  89.  
  90. 	return n;
  91. }

Leave a Reply