Recent content by Aravind Vijayan

  1. A

    i need help and it's really urgent

    so what should i do ??
  2. A

    i need help and it's really urgent

    the program works but mr sir told me my coding is wrong ..... and i still no idea how else to do it .....
  3. A

    i need help and it's really urgent

    this is introduction to c++
  4. A

    i need help and it's really urgent

    this is what my sir gave... and i still have no clue
  5. A

    i need help and it's really urgent

    #include <iostream> using namespace std; int main () { int code; int count=0; int k,l,m,n,o; int A[10]; int q,r; int h,i,j; cout<<"key-in the code : "; cin>>code; l=1; k=code; while (k) { count++; k=k/10...
  6. A

    i need help and it's really urgent

    convert a positive integer code into its english name equivalent for digit. A valid code is of size between four (4) to six (6) digits inclusive. A zero is not allowed in the code. example : if the input is 234056 the output is : INVALID CODE (PRESENCE OF ZERO) if the input is 23456 the output...