I'm having trouble with coming up with the correct code. Do
I need to put a loop? Please let me know if I'm on the right
track and what areas I need to correct. I still don't have a
good grasp on this programming stuff. Thanks =)

The assignment was to write a program using string functions
that accepts a coded value of an item and displays its
equivalent tag price. The base of the keys:

0 1 2 3 4 5 6 7 8 9
X C O M P U T E R S

Sample I/O Dialogue:

Enter coded value: TR.XX
Tag Price : 68.00

Answers were Sorted based on User's Feedback



I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let m..

Answer / pushkar kalantri

#include<stdio.h>
#include<string.h>

void main()
{
char
v1[11]={'X','C','O','M','P','U','T','E','R','S','\0'},p='.';
int v2[11]={0,1,2,3,4,5,6,7,8,9};
char ip[10];
int n,i,j,k=0,cnt=0;
//clrscr();

printf("Enter coded value: ");
scanf("%s",ip);

// printf("\nur entered code = %s",ip);
printf("\nUr price is = ");


for(i=0;v1[i]!='\0';i++)
{
if(ip[k]=='.')
{
++k;
printf("%c",p);
}
if(ip[k]==v1[i])
{
printf("%d",i);
++k;
i=-1;
if(ip[k]=='\0')
break;
}
}
}
//compiled by GCC

Is This Answer Correct ?    6 Yes 4 No

I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let m..

Answer / levixnu

#include<stdio.h>
#include<string.h>
#include<conio.h>

void main()
{
char
v1[11]={'X','C','O','M','P','U','T','E','R','S','\0'},p='.';
int v2[11]={0,1,2,3,4,5,6,7,8,9};
char ip[10];
int n,i,j,k=0,cnt=0;
clrscr();

printf("Enter coded value: ");
scanf("%s",ip);

printf("\nur entered code = %s",ip);
printf("\nUr price is = ");


for(i=0;v1[i]!='\0';i++)
{
if(ip[k]=='.')
{
++k;
printf("%c",p);
}
if(ip[k]==v1[i])
{
printf("%d",i);
++k;
i=-1;
if(ip[k]=='\0')
break;
}
}
getch();
}

Is This Answer Correct ?    4 Yes 2 No

I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let m..

Answer / roxy

#include<stdio.h>
#include<string.h>

main()
{
char v1[11]={'X','C','O','M','P','U','T','E','R','S','\0'};
char v2[11]={'0','1','2','3','4','5','6','7','8','9','\0'};

int n;
clrscr();

printf("Enter coded value: ");
scanf("%s",v1);

n=strncpy(v1, v2, 1);

v2[1]='\0';

printf("\nTag Price: %s ",v2);

getch();
}

Is This Answer Correct ?    3 Yes 14 No

Post New Answer

More C C++ Errors Interview Questions

what is syntax error?

3 Answers  


difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?

2 Answers   TCS,


#include<iostream.h> #include<stdlib.h> static int n=0; class account { int age,accno; float amt; char name[20]; public: friend void accinfo(account [] ,int); void create(); void balenq(); void deposite(); void withdrawal(); void transaction(account []); }; void account :: create() { static int acc=1231; accno=acc+n; cout<<"\n\tENTER THE CUSTOMER NAME : "; cin>>name; cout<<"\n\t ENTER THE AGE : "; cin>>age; cout<<"\n\t ENTER THE AMOUNT : "; cin>>amt; // if(amt<=500) // cout<<"\n\tAMOUNT IS NOT SUFFICIENT TO CREATE AN ACCOUNT..."; cout<<"\n\t YOUR ACCOUNT NUMBER : "<<accno<<endl; n++; } void accinfo(account cus[],int ch) { int no,flag=0; cout<<"\n\t\tENTER YOUR ACCOUNT NUMBER : "; cin>>no; for(int i=0;i<=n&&flag==0;i++) if(no==cus[i].accno) { flag=1; switch(ch) { case 2: cus[i].balenq(); break; case 3: cus[i].deposite(); break; case 4: cus[i].withdrawal(); break; case 5: cus[i].transaction(cus); break; default: cout<<"\n\t\tEND OF THE OPERATION"; exit(1); } } if(flag==0) cout<<"\n\t\tYOUR ACCOUNT DOES NOT EXIST..."<<endl; } void account :: balenq() { cout<<"\n\t\tCUSTOMER NAME : "<< name << endl; cout<<"\n\t\tBALANCE : "<< amt << endl; } void account :: deposite() { int damt; cout<<"\n\t\tCUSTOMER NAME : "<< name <<endl; cout<<"\n\t\tBALANCE : "<< amt <<endl; cout<<"\n\tENTER THE AMOUNT TO BE DEPOSITED : "; cin>>damt; amt+=damt; cout<<"\n\t\tYOUR CURRENT BALANCE : "<<amt<<endl; } void account :: withdrawal() { int wamt; cout<<"\n\t\tCUSTOMER NAME : "<< name; cout<<"\n\t\tBALANCE : "<< amt; cout<<"\n\tENTER THE AMOUNT TO BE WITHDRAWN : "; cin>>wamt; if(amt-wamt>=500) { amt-=wamt; cout<<"\n\t\tYOUR CURRENT BALANCE : "<<amt; } else cout<<"\n\tYOUR BALANCE IS TOO LOW FOR WITHDRAWAL..."<<endl; } void account :: transaction (account cus[]) { int no,tamt,flag=0; cout<<"\n\tENTER THE RECEIVER'S ACCOUNT NUMBER : "; cin>>no; cout<<"\n\t\t ENTER THE AMOUNT : "; cin>>tamt; for(int i=0;i<=n&&flag==0;i++) if(cus[i].accno==no) { flag=1; cus[i].amt+=tamt; amt-=tamt; cout<<"\n\t\tYOUR CURRENT BALANCE : "<<amt<<endl; cout<<"\n\t\t RECEIVER'S BALANCE : "<<cus[i].amt<<endl; } if(flag==0) cout<<"\n\tRECEIVER'S ACCOUNT NUMBER IS NOT AVALIABLE..."<<endl; } void main() { account cus[10]; int ch; do { cout<<"\n\t\t BANK ACCOUNT"; cout<<"\n\t\t ************\n"; cout<<"\n\t\t1.CREATE AN ACCOUNT"; cout<<"\n\t\t2.BALANCE ENQUIRY"; cout<<"\n\t\t3.DEPOSITE"; cout<<"\n\t\t4.WITHDRAWAL"; cout<<"\n\t\t5.TRANSACTION"; cout<<"\n\t\t6.EXIT\n\n"; cout<<"\n\t\tENTER YOUR CHOICE : "; cin>>ch; if(ch==1) cus[n].create(); else accinfo(cus,ch); }while(1); }

1 Answers  


I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.

1 Answers  


How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)

0 Answers  






I am using Qt 5.6 during compilation it stops and gives error about Qmake The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"

0 Answers  


void main() { int i=5,y=3,z=2,ans; clrscr(); printf("%d",++i + --z + i++ + --i * ++y); i=5,y=3,z=2; ans=++i + --z + i++ + --i * ++y; printf("\n%d",ans); getch(); } Its output is 37 and 31.... Please explain me why its different How it works.....

2 Answers  


How to reverse a linked list without using array & -1? Thank you.

2 Answers   Access, Satyam,


Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.

1 Answers   Google,


write a profram for selection sort whats the error in it?

2 Answers  


UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....

5 Answers  


class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }

1 Answers  


Categories