write a program that input four digit number and find how
many 7 that number contains
Answers were Sorted based on User's Feedback
Answer / vitthal kadam
#include<iostream.h>
int main ()
{
int num,cnt,temp;
char ch;
cout<< "Enter any number in between [0-99999]: ";
cin >> num;
temp = num;
cnt = 0;
while (temp)
{
if (temp%10 == 7)
cnt++;
temp = temp/10;
}
cout<<"count of 7 in the entered number is " << cnt ;
cin>>ch;
return 0;
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ruchi
#include<stdio.h>
#include<conio.h>
int main()
{
int num,n,i=0,p;
printf("\nEnter the number ");
scanf("%d",&num);
while(num>0)
{
n=num%10;
p=num/10;
num=p;
if(n==7)
{
i++;
}
}
printf("\nthe total number of occurence of the digit 7
is %d",i);
getch();
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kumar
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string str;
cout << "Enter a 4 digit number with '7' in it:";
cin >> str;
str.resize(4);
cout << "The 4 digit numebr you have entered is:" << str
<<endl;
int ipos = 0, count =0;
ipos = str.find_first_of('7');
while (ipos!=-1)
{
count ++;
ipos = str.find_first_of('7',(ipos+1));
}
if (count)
cout <<"Number of '7' in the string: "<<count<<endl;
else
cout <<"There are no 7's in the string entered"<<endl;
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gundaraj
void main()
{
int a[4],i,count=0;
cout<<"enter 4 digit number";
for(i=0;i<=3;i++)
{
cin>>a[i];
if(a[i]==7)
count++;
}
cout<<"The number of 7's are "<<count;
}
| Is This Answer Correct ? | 1 Yes | 4 No |
how to swap two numbers in a linked list without exchanging the data but only the links?
please visit this site you'll find my question this is my homework please answer it if you can http://easyscience.org/ib/lofiversion/index.php/t36168.html
#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?
What is 2*2?
Write a program in C++ to concatenate two strings into third string using pointers
When did c++ add stl?
i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
What is Constructor
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
Waht is inheritance
What two types of containers does the stl provide?
Who wrote stl?