Advertisement
Nevtr4l

Base C++ (Casos múltiples)

Aug 27th, 2024
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. void solve() {
  5.   // Tu código va aquí
  6. }
  7.  
  8. int main() {
  9.   int numCasos; cin >> numCasos;
  10.   while (numCasos--) {
  11.     solve();
  12.   }
  13.  
  14.   return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement