Napisze ktoś program liczący działanie (3+17)/2 w C++? Program ma mieć te stałe wartości i ma automatycznie liczyć to działanie bez podawania wyrażeń przez użytkownika tzn innych liczb.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
const int a=3,b=17,c=2;
int x;
x=(a+b)/c;
cout<<"Wynik dzialania: "<<x;
return 0;
}