Monday, December 23, 2013

codechef MUFFINS3 - "packaging cupcakes" solution

codechef MUFFINS3 - "packaging cupcakes": http://www.codechef.com/problems/MUFFINS3

codechef MUFFINS3 - "packaging cupcakes" solution: http://ideone.com/1yBjTS
#include <iostream>
using namespace std;

int main() {
// your code goes here
int t, n;
cin>>t;
while(t--) {
cin>>n;
cout<<n/2+1<<endl;
}
return 0;
}

1 comment: