Answers for "taking input from user in c++ and add them"

C++
1

c++ program to take input from user

/*Q: Write a program that ask the user to enter the roll 
number, section, CGPA and print the formatted output 
on the screen?*/
#include<iostream>
using namespace std;
int main()
{
	int a;
	char b;
	float c;
	cout<<"Roll Number:"<<a;
	cin>>a;
	cout<<"Section\t :"<<b;
	cin>>b;
	cout<<"CGPA\t :"<<c;
	cin>>c;
return 0;
}
Posted by: Guest on March-17-2022

Code answers related to "taking input from user in c++ and add them"

Browse Popular Code Answers by Language