Answers for "cpp printf int"

C++
0

c++ cout int

#include <iostream>

std::cout << "Hello, World!" << std::endl;
Posted by: Guest on June-30-2020
0

how to print all numbers in an integer in c++

#include<iostream>
using namespace std;
void print_each_digit(unsigned long long int x)
{
    if(x >= 10)
       print_each_digit(x / 10);

    int digit = x % 10;

    cout << digit << 'n';
}
int main(){
	unsigned long long int i;
	cin >> i;
	print_each_digit(i);
	return 0;
}
Posted by: Guest on August-11-2020

Browse Popular Code Answers by Language