write a program that divides 6 by 2 and prints the result on screen
Answers
Answered by
0
Answer:
C++ program:
#include <bits/stdc++.h>
using namespace std;
int main(){
int n=6;
n/=2;
cout<<n;
return 0;
}
//output 3
Similar questions
Social Sciences,
1 month ago
English,
1 month ago
Science,
3 months ago
World Languages,
3 months ago
Math,
9 months ago
English,
9 months ago
Math,
9 months ago