September 2018 1 24 Report

Po wykonaniu poniższego programu wyświetli się:

Kod programu:

#include <iostream.h>

int dziel( int a, int b);

void main(void){

int a=4, b=5;

cout<< dziel(a,b);

};

int dziel( int a, int b){

return (a/b);

};

A. 0,8

B. 1

C. 0

D. 0.8


More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.